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

/* === assets/frontend/css/extension/modules/slider/carousel.css === */
/* ============================================================
   WESIVA CAROUSEL — vanilla CSS (Bootstrap 5 ile uyumlu)
   Carousel + Hero modülü grid layout tek dosyada.
   ============================================================ */

:root {
  --wc-primary: #2b6cb0;
  --wc-control-bg: rgba(255, 255, 255, 0.92);
  --wc-control-fg: #1a202c;
  --wc-radius: 14px;
  --wc-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --wc-transition: 600ms;
  --wc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.wc-carousel-slider img {
    width: 100%
}

/* ============================================================
   Slider kolonu — grid genişliğinden bağımsız çalışır.
   --slider-ratio değişkeni ile en/boy oranı kolayca ayarlanabilir.
   Örn: <div class="... wc-carousel-slider" style="--slider-ratio: 21/9">

   Yükseklik doğrudan .wc-carousel'a verilir; slide'lar kutuyu doldurur.
   Bu sayede slide geçişlerinde / loop clone'larında yükseklik sabit kalır.
   ============================================================ */
.wc-carousel-slider { --slider-ratio: 16 / 9; }

.wc-carousel-slider .wc-carousel {
    width: 100%;
    aspect-ratio: var(--slider-ratio);
    overflow: hidden;
}

/* JS slide'ları .wc-track içine taşıyor → track de tam dolsun */
.wc-carousel-slider .wc-carousel .wc-track {
    position: absolute !important;
    inset: 0 !important;
    width: 100%;
    height: 100%;
}

/* Tüm slide'lar carousel'i tam doldursun (ilk slide dahil) — hero scope'unda da geçerli */
.wc-carousel-slider .wc-carousel .wc-slide,
.wc-carousel-slider .wc-carousel .wc-slide:first-child,
.hero-slider-wrap .wc-slide,
.hero-slider-wrap .wc-slide:first-child {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Tüm slide görselleri kutuya cover + center ile otursun */
.wc-carousel-slider .wc-carousel .wc-slide img,
.hero-slider-wrap .wc-slide img,
.hero-slider-wrap .hero-slider-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
/* ============================================================
   Carousel kök
   ============================================================ */
.wc-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--wc-radius);
  overflow: hidden;
  background: transparent;
  box-shadow: var(--wc-shadow);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.wc-carousel.is-grabbing { cursor: grabbing; }

.wc-track {
  position: relative;
  width: 100%;
}

/* ---------- Slides ---------- */
.wc-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--wc-transition) var(--wc-ease),
              opacity var(--wc-transition) var(--wc-ease);
  will-change: transform, opacity;
}
.wc-slide__media {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 8000ms var(--wc-ease);
}
.wc-slide__link {
  position: absolute; inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
}

/* Aktif slide — track'e yüksekliği bu verir */
.wc-slide.is-active {
  position: relative;
  inset: auto;
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* ---------- Effect: SLIDE ---------- */
.wc-carousel[data-effect="slide"] .wc-slide { transform: translateX(100%); opacity: 1; visibility: visible; }
.wc-carousel[data-effect="slide"] .wc-slide.is-prev { transform: translateX(-100%); opacity: 1; visibility: visible; pointer-events: none; }
.wc-carousel[data-effect="slide"] .wc-slide.is-active { transform: translateX(0); opacity: 1; visibility: visible; }

/* ---------- Effect: FADE ---------- */
.wc-carousel[data-effect="fade"] .wc-slide { transform: none; }
.wc-carousel[data-effect="fade"] .wc-slide.is-active { opacity: 1; }

/* ---------- Effect: SCALE (Ken Burns + fade) ---------- */
.wc-carousel[data-effect="scale"] .wc-slide { transform: scale(1.06); }
.wc-carousel[data-effect="scale"] .wc-slide.is-active { transform: scale(1); }
.wc-carousel[data-effect="scale"] .wc-slide.is-active .wc-slide__media { transform: scale(1.08); }

/* ============================================================
   Kontroller
   ============================================================ */
.wc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  /* Responsive: 28px (mobil) ↔ 48px (desktop) — slider genişliğine göre akıcı */
  width: clamp(28px, 4.5vw, 48px);
  height: clamp(28px, 4.5vw, 48px);
  border-radius: 999px;
  background: var(--wc-control-bg);
  color: var(--wc-control-fg);
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.35);
  transition: background .2s, transform .2s, opacity .2s;
  backdrop-filter: blur(6px);
}
.wc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.wc-arrow:active { transform: translateY(-50%) scale(0.96); }
.wc-arrow:focus-visible { outline: 2px solid var(--wc-primary); outline-offset: 3px; }
.wc-arrow.wc-arrow--prev { left: clamp(6px, 1.5vw, 18px); }
.wc-arrow.wc-arrow--next { right: clamp(6px, 1.5vw, 18px); }
.wc-arrow svg {
  width: clamp(12px, 2vw, 20px);
  height: clamp(12px, 2vw, 20px);
}

/* Dots */
.wc-dots {
  position: absolute; left: 0; right: 0; bottom: 18px;
  display: flex; justify-content: center; gap: 8px;
  z-index: 5;
}
.wc-dots__btn {
  width: 28px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background .25s ease, width .35s var(--wc-ease);
  padding: 0;
}
.wc-dots__btn:hover { background: rgba(255,255,255,0.7); }
.wc-dots__btn.is-active { background: #fff; width: 44px; }
.wc-dots__btn:focus-visible { outline: 2px solid var(--wc-primary); outline-offset: 3px; }

/* Autoplay progress bar */
.wc-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 5;
  pointer-events: none;
}
.wc-progress__bar {
  height: 100%;
  width: 0%;
  background: #fff;
}

/* Erişilebilirlik: motion azaltma */
@media (prefers-reduced-motion: reduce) {
  .wc-slide,
  .wc-progress__bar { transition: none !important; }
}

/* =========================================================
   HERO MODULE — CSS Grid tabanlı, kullanıcı tasarımlı
   ---------------------------------------------------------
   - Container: --hero-cols-{bp} ve --hero-rows-{bp} CSS variable'ları
     ile her breakpoint için farklı grid template kullanır.
   - Item: --ga-{bp} (grid-area) variable'ları ile her breakpoint'te
     ayrı konumlandırılır.
   - Bootstrap'ten bağımsız çalışır, dış CSS ile çakışmaz.
   ========================================================= */

.hero-module {
    display: grid;
    width: 100%;
    aspect-ratio: var(--hero-cols-mobile) / var(--hero-rows-mobile);
    grid-template-columns: repeat(var(--hero-cols-mobile, 12), 1fr);
    grid-template-rows: repeat(var(--hero-rows-mobile, 8), 1fr);
    gap: 8px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .hero-module {
        aspect-ratio: var(--hero-cols-tablet) / var(--hero-rows-tablet);
        grid-template-columns: repeat(var(--hero-cols-tablet, 12), 1fr);
        grid-template-rows: repeat(var(--hero-rows-tablet, 8), 1fr);
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .hero-module {
        aspect-ratio: var(--hero-cols-desktop) / var(--hero-rows-desktop);
        grid-template-columns: repeat(var(--hero-cols-desktop, 12), 1fr);
        grid-template-rows: repeat(var(--hero-rows-desktop, 8), 1fr);
        gap: 12px;
    }
}

/* Item — her breakpoint için kendi grid-area'sı */
.hero-module__item {
    grid-area: var(--ga-mobile);
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    min-width: 0;
    min-height: 0;
}
@media (min-width: 768px) {
    .hero-module__item {
        grid-area: var(--ga-tablet);
    }
}
@media (min-width: 992px) {
    .hero-module__item {
        grid-area: var(--ga-desktop);
    }
}

/* Cihaz başına gizleme — kullanıcı admin'den belirli bir bp'de item'ı gizleyebilir */
@media (max-width: 767.98px) {
    .hero-module__item.hero-hide-mobile { display: none !important; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-module__item.hero-hide-tablet { display: none !important; }
}
@media (min-width: 992px) {
    .hero-module__item.hero-hide-desktop { display: none !important; }
}

/* Lift effect — hover destekleyen cihazlarda banner hafifçe yükselir ve gölge alır */
@media (hover: hover) {
    .hero-module__item--lift {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .hero-module__item--lift:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
        z-index: 2;
    }

    /* Zoom effect — hover'da resim, kutunun içinde taşmadan yakınlaşır */
    .hero-module__item--zoom {
        overflow: hidden;
    }
    .hero-module__item--zoom .hero-banner-img {
        transition: transform 0.4s ease;
    }
    .hero-module__item--zoom:hover .hero-banner-img {
        transform: scale(1.04);
    }
}

/* Banner içeriği */
.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider içeriği — wc-carousel ile uyum, hero kutusuna sığar */
.hero-slider-wrap,
.hero-slider-wrap .wc-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slider-wrap .wc-carousel { border-radius: 0; }

/* === assets/frontend/css/extension/modules/modules.css === */
/* marquee css */

.wesiva-marquee-container {
    padding: 8px 0;
}

.wesiva-marquee-container .wesiva-marquee-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: translateZ(0);
}

.wesiva-marquee-container .wesiva-marquee-wrapper .wesiva-marquee-text-container {
    margin: .15em 0;
    white-space: nowrap;
    width: auto;
    perspective: 900;
    animation: marquee-left 0.5s linear infinite forwards;
    font-size: 16px;
}

.wesiva-marquee-container:hover .wesiva-marquee-text-container {
    animation-play-state: paused;
}

.wesiva-marquee-container .wesiva-marquee-wrapper .wesiva-marquee-text-container span {
    padding: 0 38px;
}

.wesiva-marquee-container .wesiva-marquee-wrapper .wesiva-marquee-text-container a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.wesiva-marquee-container .wesiva-marquee-wrapper .wesiva-marquee-text-container a:hover {
    opacity: 0.8;
}

@keyframes marquee-left {
    0% {
        transform: translateX(-1%);
    }
    to {
        transform: translateX(-51%);
    }
}

/* featured category 1 css */

.featured-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .featured-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .wesiva-marquee-container .wesiva-marquee-wrapper .wesiva-marquee-text-container {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .featured-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .featured-cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.featured-cat-grid > div {
    display: flex;
    width: 100%;
}

.cat-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
}
.cat-circle-wrap:hover { transform: translateY(-5px); }

.cat-circle-box {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    z-index: 1;
    flex-shrink: 0;
}



.cat-img-bg { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.cat-content { 
    display: block; 
    transition: all 0.4s ease; 
    z-index: 2; 
}

.cat-txt-bottom { 
    display: -webkit-box; 
    overflow: hidden;
    font-size: 0.9rem; 
    color: #1a1a1a; 
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
    .cat-circle-box { width: 160px; height: 160px; }
    .cat-txt-bottom { font-size: 1.3rem; }
}

@media (max-width: 767px) {
    .featured-cat-grid { overflow-x: auto; }
}

.layout-below-image .cat-content { padding-top: 10px; }

.layout-top-image .cat-circle-wrap { 
    flex-direction: column-reverse; 
}
.layout-top-image .cat-content { padding-bottom: 10px; }

/* featured category 2 css */

.sp-cat-card {
    display: flex; background: #ffffff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); height: 130px; 
    transition: transform 0.3s ease;
}
.sp-cat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.sp-img-box { position: relative; width: 35%; height: 100%; background-size: cover; background-position: center; }

.sp-content-box { width: 65%; padding: 12px 15px; display: flex; flex-direction: column; justify-content: center; }
.sp-wave { width: 25px; height: 8px; margin-bottom: 8px; }
.sp-title { font-weight: 800; font-size: 0.9rem; color: #1a1a1a; margin-bottom: 5px; line-height: 1.2; }
.sp-desc { font-size: 0.75rem; color: #666; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sp-btn { display: inline-block; width: fit-content; padding: 8px 18px; font-weight: 800; font-size: 0.75rem; color: #ffffff; text-transform: uppercase; text-decoration: none !important; border-radius: 4px; margin-top:auto; }

@media (min-width: 992px) {
    .row-cols-lg-2 .sp-cat-card { height: 160px; }
    .row-cols-lg-2 .sp-img-box { width: 45%; }
    .row-cols-lg-2 .sp-content-box { width: 55%; padding: 15px 20px; }
    .row-cols-lg-2 .sp-title { font-size: 1.1rem; }
    .row-cols-lg-2 .sp-desc { font-size: 0.9rem; -webkit-line-clamp: 3; }
}

@media (min-width: 992px) {
    .row-cols-lg-4 .sp-cat-card { flex-direction: column; height: auto; text-align: center; }
    .row-cols-lg-4 .sp-img-box { width: 100%; height: 160px; }
    .row-cols-lg-4 .sp-content-box { width: 100%; padding: 15px 15px 20px 15px; align-items: center; min-height: 175px; }
    .row-cols-lg-4 .sp-title { font-size: 1rem; }
}

@media (min-width: 992px) {
    .row-cols-lg-6 .sp-cat-card { flex-direction: column; height: auto; text-align: center; }
    .row-cols-lg-6 .sp-img-box { width: 100%; height: 110px; }
    .row-cols-lg-6 .sp-content-box { width: 100%; padding: 10px 10px 15px 10px; align-items: center; min-height: 135px; }
    .row-cols-lg-6 .sp-title { font-size: 1.1rem; margin-bottom: 2px; }

    .row-cols-lg-6 .sp-desc { 
        display: -webkit-box; 
        -webkit-line-clamp: 1; 
        font-size: 0.75rem; 
        margin-bottom: 10px; 
    }
    .row-cols-lg-6 .sp-wave { display: none; } /* Çok daralınca dalga ikonunu gizlemek daha temiz gösterir */
    .row-cols-lg-6 .sp-btn { padding: 8px 18px; font-size: 0.75rem; }
}

.theme-green .sp-btn { background-color: #83d001; } .theme-green .sp-wave-path { fill: #83d001; }
.theme-blue .sp-btn { background-color: #6ebad3; } .theme-blue .sp-wave-path { fill: #6ebad3; }
.theme-orange .sp-btn { background-color: #ff9800; } .theme-orange .sp-wave-path { fill: #ff9800; }
.theme-purple .sp-btn { background-color: #b366e1; } .theme-purple .sp-wave-path { fill: #b366e1; }
.theme-red .sp-btn { background-color: #e30a5c; } .theme-red .sp-wave-path { fill: #e30a5c; }
.theme-yellow .sp-btn { background-color: #ffc107; } .theme-yellow .sp-wave-path { fill: #ffc107; }

/* comment css */

.comment-card {
    background-size: cover;
    background-position: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* Yorum Metni */
.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 15px;
    flex-grow: 1;
    font-style: italic;
}

/* Müşteri Adı */
.customer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
/* === assets/frontend/css/featured/featured.css === */
.wesiva-main-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.wesiva-nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: none;
    margin-bottom: 40px;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wesiva-nav-tabs::-webkit-scrollbar {
    display: none;
}

.wesiva-nav-tabs .nav-item {
    flex: 0 0 auto;
}

.wesiva-nav-tabs .wesiva-nav-link {
    display: inline-block;
    background: #f5f7fa;
    color: #334155;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    line-height: 1;
    position: relative;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.wesiva-nav-tabs .wesiva-nav-link:hover {
    background: rgba(102,126,234,0.1);
    color: #1f2a44;
}

.wesiva-nav-tabs .wesiva-nav-link:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.wesiva-nav-tabs .wesiva-nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.wesiva-nav-tabs .wesiva-nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -6px;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
    opacity: .35;
}

.wesiva-text-tabs {
    gap: 16px;
    padding: 0;
    margin-bottom: 24px;
}
.wesiva-text-tabs .wesiva-nav-link {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #9aa4b2;
    font-weight: 500;
    padding: 0 10px 10px 0;
}
.wesiva-text-tabs .wesiva-nav-link:hover {
    background: transparent !important;
    color: #0f172a;
}
.wesiva-text-tabs .wesiva-nav-link.active {
    background: transparent !important;
    color: #0f172a !important;
}
.wesiva-text-tabs .wesiva-nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    opacity: 1;
}

.wesiva-nav-tabs .wesiva-nav-link.active::after {
        display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wesiva-main-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .wesiva-text-tabs .wesiva-nav-link.active {
        background: transparent !important;
        color: #0f172a !important;
        font-size: 0.8rem;
    }

    .wesiva-nav-tabs {
        scroll-snap-type: x mandatory;
    }

    .wesiva-nav-tabs .wesiva-nav-link {
        scroll-snap-align: start;
        font-size: 0.8rem;
    }
}
/* Aktif olmayan tab basliklari hafif soluk gorunur (sablonlu ve duz tablar dahil) */
.wesiva-nav-tabs .wesiva-nav-link:not(.active),
.wesiva-text-tabs .wesiva-nav-link:not(.active) {
    opacity: 0.45;
    transition: opacity .2s ease;
}

.wesiva-nav-tabs .wesiva-nav-link:not(.active):hover,
.wesiva-text-tabs .wesiva-nav-link:not(.active):hover {
    opacity: 0.8;
}

/* === 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: #1f253d;
    border-radius: 7px;
}
.ecom-product-image-wrapper {
    background: none;
}
.ecom-product-badge {
    background: #404040;
    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: #000000;
}
.ecom-add-to-cart-btn {
    background: #1d263e;
    color: #ffffff;
    font-weight: 500;
}
.ecom-add-to-cart-btn:hover {
    background: #152151;
}
.ecom-add-to-cart-btn:disabled, .ecom-add-to-cart-btn:disabled:hover {
    background: #6d6d6d;
}
.ecom-add-to-cart-btn.added {
    background: #191f50;
}
.ecom-add-to-cart-btn.added:hover {
    background: #191f50;
}
.product-image-slider .swiper-pagination-bullet {
    background: #000000;
}
.ecom-product-discount-badge {
    color: #e53935;
    font-weight: 600;
}
.ecom-product-campaign {
    color: #c62828;
    font-weight: 600;
    border-bottom-color: #c62828;
}

/* === assets/frontend/vendor/swiper/11/swiper-bundle.min.css === */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* === assets/frontend/vendor/owl-carousel/2.3.4/owl.carousel.min.css === */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/assets/frontend/vendor/owl-carousel/2.3.4/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* === assets/frontend/vendor/owl-carousel/2.3.4/owl.theme.default.min.css === */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* === 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;
}

/* Hover efektleri — yalnızca hover destekleyen cihazlarda */
@media (hover: hover) {
    /* Lift effect — banner hafifçe yükselir ve gölge alır */
    .banner-effect-lift {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .banner-effect-lift:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
        z-index: 2;
    }

    /* Zoom effect — hover'da resim, kutunun içinde taşmadan yakınlaşır */
    .banner-effect-zoom img {
        transition: transform 0.4s ease;
    }
    .banner-effect-zoom:hover img {
        transform: scale(1.04);
    }
}

/* 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) --- */
/* Sticky footer: içerik az olsa bile footer her zaman en altta kalsın
   (footer'da margin-top:auto var, body'nin flex column olması gerekiyor) */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.logo-image{
    /* Sabit height yerine min-height: dikey/kare logolar (52-60px kutu) taşmadan sığsın */
    min-height: 40px;
    display: flex;
    align-items: center;
}
.logo-image img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}
.h14-top-bar {
    color: white;
    font-size: 13px;
}
.h14-top-bar a {
    text-decoration: underline;
}
.h14-logo-img {
    max-height: 50px;
    width: 100%;
    object-fit: contain;
    transition: 0.3s;
}
.h14-search-input {
    border-radius: 5px 0 0 5px !important;
    border: 1px solid #ddd;
}
.h14-search-input:focus {
    outline: none;
    box-shadow: none;
}
.h14-search-btn {
    border-radius: 0 5px 5px 0 !important;
    border: none;
}
.h14-main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.h14-nav-link {
    padding: 15px 18px !important;
}
.h14-nav-item .dropdown-menu a img {
    width: 100px;
}

@media (min-width: 992px) {
    .h14-nav-container {
        position: relative;
    }
    .h14-nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .h14-nav-item.h14-mega-area {
        position: static;
    }
    .h14-mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        border-top: 3px solid #3e6d52;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
    }
    .h14-standard-dropdown {
        min-width: 200px;
        border-top: 3px solid #3e6d52;
    }
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu > .dropdown-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 0;
        border-top: 2px solid #3e6d52;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    .h14-submenu {
        min-width: 200px;
    }
    .h14-submenu-level3 {
        min-width: 180px;
    }
    .dropdown-submenu > .dropdown-toggle::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        border: none;
        font-size: 18px;
        font-weight: bold;
        float: right;
        margin-left: auto;
    }
}
.h14-mega-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: block;
}
.h14-mega-list {
    list-style: none;
    padding: 0;
}
.h14-mega-list li a {
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    display: block;
}
.h14-mega-list li a:hover {
    padding-left: 5px;
    transition: 0.2s;
}

@media (max-width: 991px) {
    .h14-logo-img {
        max-height: 40px;
    }
    .h14-search-container {
        order: 3;
        margin-top: 15px;
    }
    .h14-mobile-dropdown-toggle {
        border: none !important;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .h14-mobile-dropdown-toggle .h14-mobile-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .h14-mobile-dropdown-toggle[aria-expanded="true"] .h14-mobile-arrow {
        transform: rotate(90deg);
    }
    .h14-mobile-dropdown {
        display: none;
        padding: 10px 0;
    }
    .h14-mobile-dropdown.show {
        display: block;
    }
    .search-container {
        margin: 15px auto 0 auto;
        margin-top: 5px;
    }
}
@media (max-width: 768px){
    .logo-image{
        /* Sabit height yerine min-height: logo kutusu oranına göre esner */
        min-height: 35px;
    }
}
@media (max-width: 480px) {
    #h14MobileMenu.offcanvas-start {
        width: 100%;
        max-width: 100vw;
    }
}
#h14MobileMenu .collapsing {
    transition-duration: 0.2s;
}
.h14-announcement-wrapper {
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h14-announcement-item {
    display: none;
    width: 100%;
    text-align: center;
}
.h14-announcement-item.active {
    display: block;
}
.search-container {
    margin: 0 auto 0 auto;
    position: relative;
}
.search-input-wrapper {
    position: relative;
    width: 100%;
}
.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}
.search-input:focus {
    border-color: #4CAF50;
}
.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}
.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 8px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1100;
}
.search-results.active {
    display: block;
}
.result-section {
    padding: 15px;
}
.section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-left: 5px;
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 8px;
}
.product-name {
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}
.product-price {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.original-price {
    font-size: 12px;
    text-decoration: line-through;
}
.no-results {
    padding: 30px;
    text-align: center;
}

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

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

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

