/* ===========================================
   GLOBAL FONT FAMILY OVERRIDE
   Montserrat font'u tüm text elementlerine uygula
   Icon font'larını korumak için :not() selector'ları kullanılıyor
   =========================================== */

/* Tüm metin elementleri için font override - SADECE text içerikler */
body:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
p:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
div:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]):not(.js-image-zoom), 
a:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
li:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
td:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
th:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]),
input:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
textarea:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
select:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
button:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
label:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]),
h1:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
h2:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
h3:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
h4:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
h5:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]), 
h6:not([class*="fa-"]):not([class*="lnir"]):not([class*="icon-"]) {
    font-family: var(--dynamic-google-font, "Montserrat"), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* PHPFlasher Styles - Modern Tasarım - Optimized */
/* user-account.css'deki tüm eski flasher stillerini override et */
.fl-flasher {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    max-width: 480px !important;
    transform: translateY(100px) scale(0.9) !important;
}

/* user-account.css'deki ::before içeriklerini tamamen kaldır */
.fl-flasher.fl-success .fl-icon::before,
.fl-flasher.fl-error .fl-icon::before,
.fl-flasher.fl-warning .fl-icon::before,
.fl-flasher.fl-info .fl-icon::before {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
}

/* Sade Container Tasarımı - Alt Orta Konum */
.fl-main-container {
    position: fixed !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
    pointer-events: none !important;
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 12px !important;
    max-width: 400px !important;
    width: calc(100% - 48px) !important;
}

/* Sade ve Minimal Tasarım */
.fl-flasher {
    margin-bottom: 0 !important;
    pointer-events: auto !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    min-width: 320px !important;
    max-width: 400px !important;
    width: 100% !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
}

/* Basit üst çizgi */
.fl-flasher::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    pointer-events: none !important;
    opacity: 1 !important;
}

.fl-flasher.fl-success::before {
    background: #10b981 !important;
}

.fl-flasher.fl-error::before {
    background: #ef4444 !important;
}

.fl-flasher.fl-warning::before {
    background: #f59e0b !important;
}

.fl-flasher.fl-info::before {
    background: #3b82f6 !important;
}

.fl-flasher.fl-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Sade İçerik Tasarımı */
.fl-content {
    display: flex !important;
    align-items: center !important;
    padding: 16px 40px 16px 16px !important;
    gap: 12px !important;
    position: relative !important;
    z-index: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
    overflow: visible !important;
}

/* Title ve message için overflow kontrolü */
.fl-title,
.fl-message {
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
}

/* Sade Close Button */
.fl-flasher .fl-close,
.fl-flasher [class*="close"],
.fl-flasher button[aria-label*="close"],
.fl-flasher button[aria-label*="Close"] {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease !important;
}

.fl-flasher .fl-close:hover,
.fl-flasher [class*="close"]:hover,
.fl-flasher button[aria-label*="close"]:hover,
.fl-flasher button[aria-label*="Close"]:hover {
    opacity: 1 !important;
    background: #f3f4f6 !important;
}

.fl-flasher .fl-close::before,
.fl-flasher [class*="close"]::before {
    content: '×' !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
}

/* Container override */
.fl-container {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 0 !important;
    position: relative !important;
}

/* Sade İkon Tasarımı */
.fl-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}

/* İkon çiftlenmesini önle - ::before pseudo-element'lerini kaldır */
.fl-icon::before {
    content: none !important;
    display: none !important;
}

/* user-account.css'deki eski stilleri override et */
.fl-flasher .fl-icon::before {
    content: none !important;
    display: none !important;
}

/* Sade Tipografi */
.fl-title {
    display: block !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #111827 !important;
    margin-bottom: 4px !important;
    line-height: 1.4 !important;
    padding-right: 0 !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.fl-message {
    display: block !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-weight: 400 !important;
}

/* İçerik wrapper */
.fl-flasher .fl-container {
    position: relative !important;
    padding-right: 0 !important;
}

/* Sade Progress Bar */
.fl-progress-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background-color: #f3f4f6 !important;
    overflow: hidden !important;
}

.fl-progress {
    height: 100% !important;
    transition: width 0.1s linear !important;
}

/* Success - Sade Renkler */
.fl-main-container .fl-flasher.fl-success {
    background: #ffffff !important;
}
.fl-main-container .fl-flasher.fl-success .fl-title,
.fl-main-container .fl-flasher.fl-success .fl-content strong {
    color: #111827 !important;
}
.fl-main-container .fl-flasher.fl-success .fl-message,
.fl-main-container .fl-flasher.fl-success .fl-content span {
    color: #6b7280 !important;
}
.fl-main-container .fl-flasher.fl-success .fl-icon {
    background: #10b981 !important;
}
.fl-main-container .fl-flasher.fl-success .fl-progress {
    background: #10b981 !important;
}

/* Error - Sade Renkler */
.fl-main-container .fl-flasher.fl-error {
    background: #ffffff !important;
}
.fl-main-container .fl-flasher.fl-error .fl-title,
.fl-main-container .fl-flasher.fl-error .fl-content strong {
    color: #111827 !important;
}
.fl-main-container .fl-flasher.fl-error .fl-message,
.fl-main-container .fl-flasher.fl-error .fl-content span {
    color: #6b7280 !important;
}
.fl-main-container .fl-flasher.fl-error .fl-icon {
    background: #ef4444 !important;
}
.fl-main-container .fl-flasher.fl-error .fl-progress {
    background: #ef4444 !important;
}

/* Warning - Sade Renkler */
.fl-main-container .fl-flasher.fl-warning {
    background: #ffffff !important;
}
.fl-main-container .fl-flasher.fl-warning .fl-title,
.fl-main-container .fl-flasher.fl-warning .fl-content strong {
    color: #111827 !important;
}
.fl-main-container .fl-flasher.fl-warning .fl-message,
.fl-main-container .fl-flasher.fl-warning .fl-content span {
    color: #6b7280 !important;
}
.fl-main-container .fl-flasher.fl-warning .fl-icon {
    background: #f59e0b !important;
}
.fl-main-container .fl-flasher.fl-warning .fl-progress {
    background: #f59e0b !important;
}

/* Info - Sade Renkler */
.fl-main-container .fl-flasher.fl-info {
    background: #ffffff !important;
}
.fl-main-container .fl-flasher.fl-info .fl-title,
.fl-main-container .fl-flasher.fl-info .fl-content strong {
    color: #111827 !important;
}
.fl-main-container .fl-flasher.fl-info .fl-message,
.fl-main-container .fl-flasher.fl-info .fl-content span {
    color: #6b7280 !important;
}
.fl-main-container .fl-flasher.fl-info .fl-icon {
    background: #3b82f6 !important;
}
.fl-main-container .fl-flasher.fl-info .fl-progress {
    background: #3b82f6 !important;
}

/* Responsive - Mobil Optimizasyonu */
@media (max-width: 768px) {
    .fl-main-container {
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: calc(100% - 32px) !important;
        width: calc(100% - 32px) !important;
    }
    
    .fl-flasher {
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 8px !important;
        transform: translateY(20px) !important;
    }
    
    .fl-flasher.fl-show {
        transform: translateY(0) !important;
    }
    
    .fl-content {
        padding: 14px 36px 14px 14px !important;
        gap: 12px !important;
    }
    
    .fl-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
        border-radius: 6px !important;
    }
    
    .fl-title {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }
    
    .fl-message {
        font-size: 12px !important;
    }
    
    .fl-flasher .fl-close,
    .fl-flasher [class*="close"],
    .fl-flasher button[aria-label*="close"],
    .fl-flasher button[aria-label*="Close"] {
        top: 10px !important;
        right: 10px !important;
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    .fl-main-container {
        bottom: 16px !important;
        max-width: calc(100% - 24px) !important;
        width: calc(100% - 24px) !important;
    }
    
    .fl-flasher {
        border-radius: 8px !important;
    }
    
    .fl-content {
        padding: 12px 32px 12px 12px !important;
        gap: 10px !important;
    }
    
    .fl-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
        border-radius: 4px !important;
    }
    
    .fl-title {
        font-size: 12px !important;
    }
    
    .fl-message {
        font-size: 11px !important;
    }
    
    .fl-flasher .fl-close,
    .fl-flasher [class*="close"],
    .fl-flasher button[aria-label*="close"],
    .fl-flasher button[aria-label*="Close"] {
        top: 8px !important;
        right: 8px !important;
        width: 20px !important;
        height: 20px !important;
    }
}
/* ===========================================
   BROWSER COMPATIBILITY FIXES
   Firefox ve Safari için vendor prefix'ler
   =========================================== */

/* Transform özellikleri için prefix'ler */

.product-card-image img {
    -webkit-transition: -webkit-transform 0.3s ease, transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease, transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease, transform 0.3s ease;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.text-option:hover:not(:disabled),
.text-option--active {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.product-card:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/* Border-radius için prefix'ler */

.product-card-image {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.product-card {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.text-option {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.text-option__check,
.text-option__unavailable {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Box-shadow için prefix'ler */

.product-card {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.product-card:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.text-option {
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.text-option:hover:not(:disabled) {
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.text-option--active {
    -webkit-box-shadow: 0 4px 12px rgba(0, 88, 80, 0.3);
    -moz-box-shadow: 0 4px 12px rgba(0, 88, 80, 0.3);
    box-shadow: 0 4px 12px rgba(0, 88, 80, 0.3);
}

.text-option__check,
.text-option__unavailable {
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Transition için prefix'ler */

.product-card {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.text-option {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Display: flex için prefix'ler */
.variant-text-wrapper,
.text-option,
.text-option__check,
.text-option__unavailable {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.text-option {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.text-option__check,
.text-option__unavailable {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Grid için prefix'ler */
.products-grid {
    display: -webkit-box;
    display: -ms-grid;
    display: grid;
}

.products-grid.product-list-grid-desktop-2 {
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.products-grid.product-list-grid-desktop-3 {
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
}

.products-grid.product-list-grid-desktop-4 {
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
}

.products-grid.product-list-grid-desktop-5 {
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
}

.products-grid.product-list-grid-desktop-6 {
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
}

/* Gap özelliği için prefix'ler (Firefox ve Safari) */

.products-grid.product-list-grid-desktop-2 {
    gap: 20px;
}

.products-grid.product-list-grid-desktop-3 {
    gap: 20px;
}

.products-grid.product-list-grid-desktop-4 {
    gap: 20px;
}

.products-grid.product-list-grid-desktop-5 {
    gap: 18px;
}

.products-grid.product-list-grid-desktop-6 {
    gap: 15px;
}

/* User-select için prefix'ler */
.text-option {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Appearance için prefix'ler (form elementleri) */
input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Backdrop-filter için prefix'ler (varsa) */
.backdrop-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Will-change için prefix'ler */
.product-card,
.product-card-image img {
    will-change: transform;
    -webkit-will-change: transform;
    -moz-will-change: transform;
}

/* Flexbox gap için prefix'ler (eski tarayıcılar için) */
.variant-text-wrapper {
    margin: -4px;
}

.variant-text-wrapper > * {
    margin: 4px;
}

/* Grid için fallback (eski tarayıcılar) */
@supports not (display: grid) {
    .products-grid {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .products-grid > * {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}

/* Transform için hardware acceleration - sadece hover durumunda */
.product-card:hover,
.product-card:hover .product-card-image img {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

/* Kategori grid için prefix'ler */
.uomo-category-grid-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.uomo-category-grid-card {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.uomo-category-grid-card:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Carousel/Slider için prefix'ler */
.products-carousel__prev,
.products-carousel__next,
.produc_slider__prev,
.produc_slider__next,
.uomo-product-slider-prev,
.uomo-product-slider-next {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.32s;
    -moz-transition: opacity 0.32s;
    -o-transition: opacity 0.32s;
    transition: opacity 0.32s;
}

/* Ürün slider'ları için alt boşluk azaltma - Tüm ekran boyutları */
.produc_slider,
.uomo-product-slider-main,
#new_product.produc_slider,
.produc_slider__container,
.uomo-product-slider-container,
.produc_slider__track,
.uomo-product-slider-track {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.produc_slider__slide,
.uomo-product-slider-slide,
.homepage-product-slider__slide {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Kategori slider resimli için alt boşluk azaltma - Tüm ekran boyutları */
.homepagecategory,
.homepagecategory__container,
.homepagecategory__list,
.homepagecategory-card,
.homepagecategory-card__content,
.homepagecategory-card__products,
.homepagecategory-card__track {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Ürün sayısına bakılmaksızın tutarlı alt boşluk - tüm durumlarda boşluk olmasın */
.homepagecategory-card__body .homepagecategory-card__products:last-child,
.homepagecategory-card__body > .homepagecategory-card__products,
.homepagecategory-card__track:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Homepage Category Slider için prefix'ler */
.homepagecategory-card__track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.homepagecategory-card__control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.homepagecategory-card__product {
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Swiper için prefix'ler */
.swiper-wrapper,
.homepage-category-banner-slider__swiper .swiper-wrapper {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-slide,
.homepage-category-banner-slider__swiper .swiper-slide {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Featured product badge için prefix'ler */
.featured-product-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    -moz-box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    -webkit-animation: featured-pulse 2s infinite;
    -moz-animation: featured-pulse 2s infinite;
    -o-animation: featured-pulse 2s infinite;
    animation: featured-pulse 2s infinite;
}

/* Animation için prefix'ler */
@-webkit-keyframes featured-pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@-moz-keyframes featured-pulse {
    0%, 100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes featured-pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }
}

/* Genel border-radius prefix'leri */
.border-radius-4,
.category-banner__item {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Genel box-shadow prefix'leri */
.shadow-sm,
.shadow,
.shadow-lg {
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
    box-shadow: inherit;
}

/* Genel transition prefix'leri */
.transition,
[class*="transition"] {
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

/* Genel transform prefix'leri - önemli elementler için */
.d-flex,
[class*="flex"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

/* Align items için prefix'ler */
.align-items-center,
.align-items-start,
.align-items-end {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/* Justify content için prefix'ler */
.justify-content-center,
.justify-content-start,
.justify-content-end,
.justify-content-between {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Flex-wrap için prefix'ler */
.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/* Position sticky için prefix'ler */
.sticky-top,
[class*="sticky"] {
    position: -webkit-sticky;
    position: sticky;
}

/* Object-fit için prefix'ler */
.object-fit-cover,
.object-fit-contain {
    -o-object-fit: inherit;
    object-fit: inherit;
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fit-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

/* Responsive.css için ek prefix'ler */
.swiper-progress-bar {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

[style*="transform: translateX(-50%)"] {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Box-shadow için genel prefix'ler */
[style*="box-shadow"] {
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
    box-shadow: inherit;
}

/* Border-radius için genel prefix'ler */
[style*="border-radius"] {
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}

/* Transition için genel prefix'ler */
[style*="transition"] {
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

/* Display flex için genel prefix'ler */
[style*="display: flex"],
[style*="display:flex"] {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

/* Inline-flex için prefix'ler */
[style*="display: inline-flex"],
[style*="display:inline-flex"] {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -moz-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

/* PDP Quantity için prefix'ler */
.pdp-qty {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

/**
 * Force Visible Scrollbar for Thumbnails
 * Bu dosya scrollbar'ı zorla görünür yapar
 */

/* Sol ve Sağ Thumbnails Container - Dinamik Yükseklik */
.gallery-layout-thumbnails_left .thumbnail-left-container,
.gallery-layout-thumbnails_right .thumbnail-right-container {
    max-height: 444px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-gutter: stable both-edges !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
}

/* macOS için scrollbar her zaman göster */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar {
    -webkit-appearance: none !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar:vertical,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar:vertical {
    width: 14px !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar:horizontal,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar:horizontal {
    height: 0 !important;
}

/* Sol Thumbnails - Scrollbar Track */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-track {
    background: #eeeeee !important;
    border-radius: 7px !important;
    border: 2px solid #d0d0d0 !important;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.15) !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.15) !important;
}

/* Sol Thumbnails - Scrollbar Thumb (Her Zaman Görünür) */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb {
    background: #ff6b35 !important;
    border-radius: 7px !important;
    border: 3px solid #ffffff !important;
    min-height: 60px !important;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.7) !important;
    -webkit-box-shadow: 0 3px 10px rgba(255, 107, 53, 0.7) !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb:hover {
    background: #ff5722 !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.8) !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb:active {
    background: #e64a19 !important;
}

/* Sağ Thumbnails - Scrollbar Track */
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-track {
    background: #eeeeee !important;
    border-radius: 7px !important;
    border: 2px solid #d0d0d0 !important;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.15) !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.15) !important;
}

/* Sağ Thumbnails - Scrollbar Thumb (Her Zaman Görünür) */
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb {
    background: #ff6b35 !important;
    border-radius: 7px !important;
    border: 3px solid #ffffff !important;
    min-height: 60px !important;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.7) !important;
    -webkit-box-shadow: 0 3px 10px rgba(255, 107, 53, 0.7) !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb:hover {
    background: #ff5722 !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.8) !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb:active {
    background: #e64a19 !important;
}

/* Firefox için */
.gallery-layout-thumbnails_left .thumbnail-left-container,
.gallery-layout-thumbnails_right .thumbnail-right-container {
    scrollbar-width: auto !important;
    scrollbar-color: #ff6b35 #eeeeee !important;
}

/* macOS Safari ve Chrome için - Scrollbar butonları ekle (her zaman görünür olması için) */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-button,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-button {
    display: block !important;
    height: 0 !important;
}

/* Scrollbar'ı overlay değil, normal modda göster */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-track,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-track {
    -webkit-appearance: none !important;
}

/* Scrollbar thumb'ı her zaman görünür yap - macOS için */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb {
    -webkit-appearance: none !important;
    display: block !important;
    visibility: visible !important;
}

/* Scrollbar track her zaman görünür */
.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-track,
.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-track {
    display: block !important;
    visibility: visible !important;
}

/* Google Reviews Mobile Styles */
/* Mobil cihazlar için Google Reviews özel stilleri */

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 2rem 1rem;
    }
    
    .google-review-card,
    .google-review-item {
        margin-bottom: 1rem;
    }
    
    .google-reviews-swiper {
        padding-bottom: 2rem;
    }
}

/* ===========================================
   MOBİL MENÜ SLIDING SUBMENU - BENZERSİZ CSS
   Çakışmaları önlemek için özel prefix: awp-sliding-
   =========================================== */

@media (max-width: 991.98px) {
    /* Ana navigation container - sliding wrapper */
    .header-mobile__navigation.awp-sliding-wrapper {
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Modern mobil menü container - ana menü */
    .header-mobile__navigation .modern-mobile-menu.awp-sliding-main-menu {
        position: relative !important;
        width: 100% !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform !important;
    }
    
    /* Ana menü kaydırma - submenu açıkken */
    .header-mobile__navigation.awp-has-open-submenu .modern-mobile-menu.awp-sliding-main-menu {
        transform: translateX(-30%) !important;
    }
    
    /* Modern mobil menü item */
    .modern-mobile-menu__item.awp-sliding-item {
        position: relative !important;
    }
    
    /* Sliding submenu - navigation container'a göre absolute */
    .modern-mobile-submenu.awp-sliding-submenu {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1040 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: none !important;
        height: 100% !important;
        min-height: 100% !important;
        width: 100% !important;
        visibility: hidden !important;
        opacity: 0 !important;
        display: block !important;
    }
    
    /* Submenu açıkken - sağdan kayarak gelir */
    .modern-mobile-submenu.awp-sliding-submenu.awp-sliding-submenu-open {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Submenu içindeki nested submenu'ler */
    .awp-sliding-submenu .awp-sliding-submenu {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: translateX(100%) !important;
        z-index: 1050 !important;
        width: 100% !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .awp-sliding-submenu .awp-sliding-submenu.awp-sliding-submenu-open {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Geri butonu stili */
    .awp-sliding-back-btn {
        display: flex !important;
        align-items: center !important;
        padding: 16px 20px !important;
        background: #fafafa !important;
        border-bottom: 2px solid #f5f5f5 !important;
        cursor: pointer !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        text-decoration: none !important;
        transition: background 0.2s ease !important;
        margin-bottom: 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }
    
    .awp-sliding-back-btn:hover {
        background: #f0f0f0 !important;
    }
    
    .awp-sliding-back-btn svg {
        margin-right: 12px !important;
        width: 7px !important;
        height: 11px !important;
        flex-shrink: 0 !important;
    }
    
    .awp-sliding-back-btn span {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    
    /* Submenu listesi */
    .awp-sliding-submenu .modern-mobile-submenu__list {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        background: #ffffff !important;
    }
    
    /* Submenu içindeki linkler */
    .awp-sliding-submenu .modern-mobile-menu__link {
        padding: 18px 20px !important;
    }
    
    /* Submenu item stilleri */
    .awp-sliding-submenu .modern-mobile-menu__item {
        border-bottom: 1px solid #f5f5f5 !important;
    }
    
    .awp-sliding-submenu .modern-mobile-menu__item:last-child {
        border-bottom: none !important;
    }
    
    /* Submenu açıkken body scroll'u kilitle */
    body.awp-submenu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    /* Eski accordion stillerini devre dışı bırak */
    .awp-sliding-submenu {
        max-height: none !important;
        overflow: visible !important;
        background: #ffffff !important;
    }
}


/* ==========================================
   LINE ICONS - From line-icons.css
   ========================================== */

@font-face {
    font-family: 'LineIconsPro';
    src: url('../fonts/LineIconsPro Regular.eot');
    src: url('../fonts/LineIconsPro Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/LineIconsPro Regular.woff2') format('woff2'),
         url('../fonts/LineIconsPro Regular.woff') format('woff'),
         url('../fonts/LineIconsPro Regular.ttf') format('truetype'),
         url('../fonts/LineIconsPro Regular.svg#LineIconsPro') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LineIconsPro';
    src: url('../fonts/LineIconsPro Light.eot');
    src: url('../fonts/LineIconsPro Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/LineIconsPro Light.woff2') format('woff2'),
         url('../fonts/LineIconsPro Light.woff') format('woff'),
         url('../fonts/LineIconsPro Light.ttf') format('truetype'),
         url('../fonts/LineIconsPro Light.svg#LineIconsPro') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

[class^="lni-"], [class*=" lni-"], [class^="lnir"], [class*=" lnir"] {
    font-family: 'LineIconsPro' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header için özel ince ikonlar - FontAwesome */
.header-tools__item .fa-user {
    font-size: 1.3rem;
    color: #222222;
    transition: all 0.3s ease;
}

.header-tools__item .fa-shopping-cart {
    font-size: 1.3rem;
    color: #222222;
    transition: all 0.3s ease;
}

.header-tools__item .fa-bell {
    font-size: 1.3rem;
    color: #222222;
    transition: all 0.3s ease;
}

/* Mobil header için */
.header-mobile .header-tools__item .fa-user,
.header-mobile .header-tools__item .fa-shopping-cart,
.header-mobile .header-tools__item .fa-bell {
    font-size: 1.2rem;
    color: #222222;
    transition: all 0.3s ease;
}

/* Hover efektleri */
.header-tools__item:hover .fa-user,
.header-tools__item:hover .fa-shopping-cart,
.header-tools__item:hover .fa-bell {
    transform: scale(1.1);
    color: #015850;
    transition: all 0.3s ease;
}

/* Mobil menüdeki kullanıcı ikonu */
.customer-links .fa-user {
    font-size: 1.2rem;
    color: #222222;
    margin-right: 8px;
}

/* İkonların FontAwesome font-family'sini koruma */
.header-tools__item i {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Sepet ikonu için özel stil */
.header-tools__cart i {
    font-size: 1.3rem !important;
    color: #222222 !important;
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Sepet ikonunun görünürlüğünü artırma */
.header-tools__cart .fa-shopping-cart {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.3rem !important;
    color: #222222 !important;
}

/* Mobil sepet ikonu */
.header-mobile .header-tools__cart .fa-shopping-cart {
    font-size: 1.2rem !important;
    color: #222222 !important;
}

/* Sepet ikonu için ek güvenlik */
.header-tools__cart i.fa-shopping-cart,
.header-tools__cart i.fa,
.header-tools__cart i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.3rem !important;
    color: #222222 !important;
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Tüm sepet ikonları için genel stil */
.fa-shopping-cart {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.3rem !important;
    color: #222222 !important;
}

/* FontAwesome sepet ikonu için stil */
.header-tools__item .fa-shopping-cart {
    font-size: 1.3rem;
    color: #222222;
    transition: all 0.3s ease;
}

.header-tools__item:hover .fa-shopping-cart {
    transform: scale(1.1);
    color: #015850;
    transition: all 0.3s ease;
}

/* Mobil FontAwesome sepet ikonu */
.header-mobile .header-tools__item .fa-shopping-cart {
    font-size: 1.2rem;
    color: #222222;
    transition: all 0.3s ease;
} 

/* ==========================================
   THEMIFY ICONS - From themify-icons.css
   ========================================== */

@font-face {
	font-family: 'themify';
	src:url('/themes/awapanel/deep/fonts/themify.eot?-fvbane');
	src:url('/themes/awapanel/deep/fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),
		url('/themes/awapanel/deep/fonts/themify.woff?-fvbane') format('woff'),
		url('/themes/awapanel/deep/fonts/themify.ttf?-fvbane') format('truetype'),
		url('/themes/awapanel/deep/fonts/themify.svg?-fvbane#themify') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
	font-family: 'themify';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
	content: "\e600";
}
.ti-volume:before {
	content: "\e601";
}
.ti-user:before {
	content: "\e602";
}
.ti-unlock:before {
	content: "\e603";
}
.ti-unlink:before {
	content: "\e604";
}
.ti-trash:before {
	content: "\e605";
}
.ti-thought:before {
	content: "\e606";
}
.ti-target:before {
	content: "\e607";
}
.ti-tag:before {
	content: "\e608";
}
.ti-tablet:before {
	content: "\e609";
}
.ti-star:before {
	content: "\e60a";
}
.ti-spray:before {
	content: "\e60b";
}
.ti-signal:before {
	content: "\e60c";
}
.ti-shopping-cart:before {
	content: "\e60d";
}
.ti-shopping-cart-full:before {
	content: "\e60e";
}
.ti-settings:before {
	content: "\e60f";
}
.ti-search:before {
	content: "\e610";
}
.ti-zoom-in:before {
	content: "\e611";
}
.ti-zoom-out:before {
	content: "\e612";
}
.ti-cut:before {
	content: "\e613";
}
.ti-ruler:before {
	content: "\e614";
}
.ti-ruler-pencil:before {
	content: "\e615";
}
.ti-ruler-alt:before {
	content: "\e616";
}
.ti-bookmark:before {
	content: "\e617";
}
.ti-bookmark-alt:before {
	content: "\e618";
}
.ti-reload:before {
	content: "\e619";
}
.ti-plus:before {
	content: "\e61a";
}
.ti-pin:before {
	content: "\e61b";
}
.ti-pencil:before {
	content: "\e61c";
}
.ti-pencil-alt:before {
	content: "\e61d";
}
.ti-paint-roller:before {
	content: "\e61e";
}
.ti-paint-bucket:before {
	content: "\e61f";
}
.ti-na:before {
	content: "\e620";
}
.ti-mobile:before {
	content: "\e621";
}
.ti-minus:before {
	content: "\e622";
}
.ti-medall:before {
	content: "\e623";
}
.ti-medall-alt:before {
	content: "\e624";
}
.ti-marker:before {
	content: "\e625";
}
.ti-marker-alt:before {
	content: "\e626";
}
.ti-arrow-up:before {
	content: "\e627";
}
.ti-arrow-right:before {
	content: "\e628";
}
.ti-arrow-left:before {
	content: "\e629";
}
.ti-arrow-down:before {
	content: "\e62a";
}
.ti-lock:before {
	content: "\e62b";
}
.ti-location-arrow:before {
	content: "\e62c";
}
.ti-link:before {
	content: "\e62d";
}
.ti-layout:before {
	content: "\e62e";
}
.ti-layers:before {
	content: "\e62f";
}
.ti-layers-alt:before {
	content: "\e630";
}
.ti-key:before {
	content: "\e631";
}
.ti-import:before {
	content: "\e632";
}
.ti-image:before {
	content: "\e633";
}
.ti-heart:before {
	content: "\e634";
}
.ti-heart-broken:before {
	content: "\e635";
}
.ti-hand-stop:before {
	content: "\e636";
}
.ti-hand-open:before {
	content: "\e637";
}
.ti-hand-drag:before {
	content: "\e638";
}
.ti-folder:before {
	content: "\e639";
}
.ti-flag:before {
	content: "\e63a";
}
.ti-flag-alt:before {
	content: "\e63b";
}
.ti-flag-alt-2:before {
	content: "\e63c";
}
.ti-eye:before {
	content: "\e63d";
}
.ti-export:before {
	content: "\e63e";
}
.ti-exchange-vertical:before {
	content: "\e63f";
}
.ti-desktop:before {
	content: "\e640";
}
.ti-cup:before {
	content: "\e641";
}
.ti-crown:before {
	content: "\e642";
}
.ti-comments:before {
	content: "\e643";
}
.ti-comment:before {
	content: "\e644";
}
.ti-comment-alt:before {
	content: "\e645";
}
.ti-close:before {
	content: "\e646";
}
.ti-clip:before {
	content: "\e647";
}
.ti-angle-up:before {
	content: "\e648";
}
.ti-angle-right:before {
	content: "\e649";
}
.ti-angle-left:before {
	content: "\e64a";
}
.ti-angle-down:before {
	content: "\e64b";
}
.ti-check:before {
	content: "\e64c";
}
.ti-check-box:before {
	content: "\e64d";
}
.ti-camera:before {
	content: "\e64e";
}
.ti-announcement:before {
	content: "\e64f";
}
.ti-brush:before {
	content: "\e650";
}
.ti-briefcase:before {
	content: "\e651";
}
.ti-bolt:before {
	content: "\e652";
}
.ti-bolt-alt:before {
	content: "\e653";
}
.ti-blackboard:before {
	content: "\e654";
}
.ti-bag:before {
	content: "\e655";
}
.ti-move:before {
	content: "\e656";
}
.ti-arrows-vertical:before {
	content: "\e657";
}
.ti-arrows-horizontal:before {
	content: "\e658";
}
.ti-fullscreen:before {
	content: "\e659";
}
.ti-arrow-top-right:before {
	content: "\e65a";
}
.ti-arrow-top-left:before {
	content: "\e65b";
}
.ti-arrow-circle-up:before {
	content: "\e65c";
}
.ti-arrow-circle-right:before {
	content: "\e65d";
}
.ti-arrow-circle-left:before {
	content: "\e65e";
}
.ti-arrow-circle-down:before {
	content: "\e65f";
}
.ti-angle-double-up:before {
	content: "\e660";
}
.ti-angle-double-right:before {
	content: "\e661";
}
.ti-angle-double-left:before {
	content: "\e662";
}
.ti-angle-double-down:before {
	content: "\e663";
}
.ti-zip:before {
	content: "\e664";
}
.ti-world:before {
	content: "\e665";
}
.ti-wheelchair:before {
	content: "\e666";
}
.ti-view-list:before {
	content: "\e667";
}
.ti-view-list-alt:before {
	content: "\e668";
}
.ti-view-grid:before {
	content: "\e669";
}
.ti-uppercase:before {
	content: "\e66a";
}
.ti-upload:before {
	content: "\e66b";
}
.ti-underline:before {
	content: "\e66c";
}
.ti-truck:before {
	content: "\e66d";
}
.ti-timer:before {
	content: "\e66e";
}
.ti-ticket:before {
	content: "\e66f";
}
.ti-thumb-up:before {
	content: "\e670";
}
.ti-thumb-down:before {
	content: "\e671";
}
.ti-text:before {
	content: "\e672";
}
.ti-stats-up:before {
	content: "\e673";
}
.ti-stats-down:before {
	content: "\e674";
}
.ti-split-v:before {
	content: "\e675";
}
.ti-split-h:before {
	content: "\e676";
}
.ti-smallcap:before {
	content: "\e677";
}
.ti-shine:before {
	content: "\e678";
}
.ti-shift-right:before {
	content: "\e679";
}
.ti-shift-left:before {
	content: "\e67a";
}
.ti-shield:before {
	content: "\e67b";
}
.ti-notepad:before {
	content: "\e67c";
}
.ti-server:before {
	content: "\e67d";
}
.ti-quote-right:before {
	content: "\e67e";
}
.ti-quote-left:before {
	content: "\e67f";
}
.ti-pulse:before {
	content: "\e680";
}
.ti-printer:before {
	content: "\e681";
}
.ti-power-off:before {
	content: "\e682";
}
.ti-plug:before {
	content: "\e683";
}
.ti-pie-chart:before {
	content: "\e684";
}
.ti-paragraph:before {
	content: "\e685";
}
.ti-panel:before {
	content: "\e686";
}
.ti-package:before {
	content: "\e687";
}
.ti-music:before {
	content: "\e688";
}
.ti-music-alt:before {
	content: "\e689";
}
.ti-mouse:before {
	content: "\e68a";
}
.ti-mouse-alt:before {
	content: "\e68b";
}
.ti-money:before {
	content: "\e68c";
}
.ti-microphone:before {
	content: "\e68d";
}
.ti-menu:before {
	content: "\e68e";
}
.ti-menu-alt:before {
	content: "\e68f";
}
.ti-map:before {
	content: "\e690";
}
.ti-map-alt:before {
	content: "\e691";
}
.ti-loop:before {
	content: "\e692";
}
.ti-location-pin:before {
	content: "\e693";
}
.ti-list:before {
	content: "\e694";
}
.ti-light-bulb:before {
	content: "\e695";
}
.ti-Italic:before {
	content: "\e696";
}
.ti-info:before {
	content: "\e697";
}
.ti-infinite:before {
	content: "\e698";
}
.ti-id-badge:before {
	content: "\e699";
}
.ti-hummer:before {
	content: "\e69a";
}
.ti-home:before {
	content: "\e69b";
}
.ti-help:before {
	content: "\e69c";
}
.ti-headphone:before {
	content: "\e69d";
}
.ti-harddrives:before {
	content: "\e69e";
}
.ti-harddrive:before {
	content: "\e69f";
}
.ti-gift:before {
	content: "\e6a0";
}
.ti-game:before {
	content: "\e6a1";
}
.ti-filter:before {
	content: "\e6a2";
}
.ti-files:before {
	content: "\e6a3";
}
.ti-file:before {
	content: "\e6a4";
}
.ti-eraser:before {
	content: "\e6a5";
}
.ti-envelope:before {
	content: "\e6a6";
}
.ti-download:before {
	content: "\e6a7";
}
.ti-direction:before {
	content: "\e6a8";
}
.ti-direction-alt:before {
	content: "\e6a9";
}
.ti-dashboard:before {
	content: "\e6aa";
}
.ti-control-stop:before {
	content: "\e6ab";
}
.ti-control-shuffle:before {
	content: "\e6ac";
}
.ti-control-play:before {
	content: "\e6ad";
}
.ti-control-pause:before {
	content: "\e6ae";
}
.ti-control-forward:before {
	content: "\e6af";
}
.ti-control-backward:before {
	content: "\e6b0";
}
.ti-cloud:before {
	content: "\e6b1";
}
.ti-cloud-up:before {
	content: "\e6b2";
}
.ti-cloud-down:before {
	content: "\e6b3";
}
.ti-clipboard:before {
	content: "\e6b4";
}
.ti-car:before {
	content: "\e6b5";
}
.ti-calendar:before {
	content: "\e6b6";
}
.ti-book:before {
	content: "\e6b7";
}
.ti-bell:before {
	content: "\e6b8";
}
.ti-basketball:before {
	content: "\e6b9";
}
.ti-bar-chart:before {
	content: "\e6ba";
}
.ti-bar-chart-alt:before {
	content: "\e6bb";
}
.ti-back-right:before {
	content: "\e6bc";
}
.ti-back-left:before {
	content: "\e6bd";
}
.ti-arrows-corner:before {
	content: "\e6be";
}
.ti-archive:before {
	content: "\e6bf";
}
.ti-anchor:before {
	content: "\e6c0";
}
.ti-align-right:before {
	content: "\e6c1";
}
.ti-align-left:before {
	content: "\e6c2";
}
.ti-align-justify:before {
	content: "\e6c3";
}
.ti-align-center:before {
	content: "\e6c4";
}
.ti-alert:before {
	content: "\e6c5";
}
.ti-alarm-clock:before {
	content: "\e6c6";
}
.ti-agenda:before {
	content: "\e6c7";
}
.ti-write:before {
	content: "\e6c8";
}
.ti-window:before {
	content: "\e6c9";
}
.ti-widgetized:before {
	content: "\e6ca";
}
.ti-widget:before {
	content: "\e6cb";
}
.ti-widget-alt:before {
	content: "\e6cc";
}
.ti-wallet:before {
	content: "\e6cd";
}
.ti-video-clapper:before {
	content: "\e6ce";
}
.ti-video-camera:before {
	content: "\e6cf";
}
.ti-vector:before {
	content: "\e6d0";
}
.ti-themify-logo:before {
	content: "\e6d1";
}
.ti-themify-favicon:before {
	content: "\e6d2";
}
.ti-themify-favicon-alt:before {
	content: "\e6d3";
}
.ti-support:before {
	content: "\e6d4";
}
.ti-stamp:before {
	content: "\e6d5";
}
.ti-split-v-alt:before {
	content: "\e6d6";
}
.ti-slice:before {
	content: "\e6d7";
}
.ti-shortcode:before {
	content: "\e6d8";
}
.ti-shift-right-alt:before {
	content: "\e6d9";
}
.ti-shift-left-alt:before {
	content: "\e6da";
}
.ti-ruler-alt-2:before {
	content: "\e6db";
}
.ti-receipt:before {
	content: "\e6dc";
}
.ti-pin2:before {
	content: "\e6dd";
}
.ti-pin-alt:before {
	content: "\e6de";
}
.ti-pencil-alt2:before {
	content: "\e6df";
}
.ti-palette:before {
	content: "\e6e0";
}
.ti-more:before {
	content: "\e6e1";
}
.ti-more-alt:before {
	content: "\e6e2";
}
.ti-microphone-alt:before {
	content: "\e6e3";
}
.ti-magnet:before {
	content: "\e6e4";
}
.ti-line-double:before {
	content: "\e6e5";
}
.ti-line-dotted:before {
	content: "\e6e6";
}
.ti-line-dashed:before {
	content: "\e6e7";
}
.ti-layout-width-full:before {
	content: "\e6e8";
}
.ti-layout-width-default:before {
	content: "\e6e9";
}
.ti-layout-width-default-alt:before {
	content: "\e6ea";
}
.ti-layout-tab:before {
	content: "\e6eb";
}
.ti-layout-tab-window:before {
	content: "\e6ec";
}
.ti-layout-tab-v:before {
	content: "\e6ed";
}
.ti-layout-tab-min:before {
	content: "\e6ee";
}
.ti-layout-slider:before {
	content: "\e6ef";
}
.ti-layout-slider-alt:before {
	content: "\e6f0";
}
.ti-layout-sidebar-right:before {
	content: "\e6f1";
}
.ti-layout-sidebar-none:before {
	content: "\e6f2";
}
.ti-layout-sidebar-left:before {
	content: "\e6f3";
}
.ti-layout-placeholder:before {
	content: "\e6f4";
}
.ti-layout-menu:before {
	content: "\e6f5";
}
.ti-layout-menu-v:before {
	content: "\e6f6";
}
.ti-layout-menu-separated:before {
	content: "\e6f7";
}
.ti-layout-menu-full:before {
	content: "\e6f8";
}
.ti-layout-media-right-alt:before {
	content: "\e6f9";
}
.ti-layout-media-right:before {
	content: "\e6fa";
}
.ti-layout-media-overlay:before {
	content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
	content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd";
}
.ti-layout-media-left-alt:before {
	content: "\e6fe";
}
.ti-layout-media-left:before {
	content: "\e6ff";
}
.ti-layout-media-center-alt:before {
	content: "\e700";
}
.ti-layout-media-center:before {
	content: "\e701";
}
.ti-layout-list-thumb:before {
	content: "\e702";
}
.ti-layout-list-thumb-alt:before {
	content: "\e703";
}
.ti-layout-list-post:before {
	content: "\e704";
}
.ti-layout-list-large-image:before {
	content: "\e705";
}
.ti-layout-line-solid:before {
	content: "\e706";
}
.ti-layout-grid4:before {
	content: "\e707";
}
.ti-layout-grid3:before {
	content: "\e708";
}
.ti-layout-grid2:before {
	content: "\e709";
}
.ti-layout-grid2-thumb:before {
	content: "\e70a";
}
.ti-layout-cta-right:before {
	content: "\e70b";
}
.ti-layout-cta-left:before {
	content: "\e70c";
}
.ti-layout-cta-center:before {
	content: "\e70d";
}
.ti-layout-cta-btn-right:before {
	content: "\e70e";
}
.ti-layout-cta-btn-left:before {
	content: "\e70f";
}
.ti-layout-column4:before {
	content: "\e710";
}
.ti-layout-column3:before {
	content: "\e711";
}
.ti-layout-column2:before {
	content: "\e712";
}
.ti-layout-accordion-separated:before {
	content: "\e713";
}
.ti-layout-accordion-merged:before {
	content: "\e714";
}
.ti-layout-accordion-list:before {
	content: "\e715";
}
.ti-ink-pen:before {
	content: "\e716";
}
.ti-info-alt:before {
	content: "\e717";
}
.ti-help-alt:before {
	content: "\e718";
}
.ti-headphone-alt:before {
	content: "\e719";
}
.ti-hand-point-up:before {
	content: "\e71a";
}
.ti-hand-point-right:before {
	content: "\e71b";
}
.ti-hand-point-left:before {
	content: "\e71c";
}
.ti-hand-point-down:before {
	content: "\e71d";
}
.ti-gallery:before {
	content: "\e71e";
}
.ti-face-smile:before {
	content: "\e71f";
}
.ti-face-sad:before {
	content: "\e720";
}
.ti-credit-card:before {
	content: "\e721";
}
.ti-control-skip-forward:before {
	content: "\e722";
}
.ti-control-skip-backward:before {
	content: "\e723";
}
.ti-control-record:before {
	content: "\e724";
}
.ti-control-eject:before {
	content: "\e725";
}
.ti-comments-smiley:before {
	content: "\e726";
}
.ti-brush-alt:before {
	content: "\e727";
}
.ti-youtube:before {
	content: "\e728";
}
.ti-vimeo:before {
	content: "\e729";
}
.ti-twitter:before {
	content: "\e72a";
}
.ti-time:before {
	content: "\e72b";
}
.ti-tumblr:before {
	content: "\e72c";
}
.ti-skype:before {
	content: "\e72d";
}
.ti-share:before {
	content: "\e72e";
}
.ti-share-alt:before {
	content: "\e72f";
}
.ti-rocket:before {
	content: "\e730";
}
.ti-pinterest:before {
	content: "\e731";
}
.ti-new-window:before {
	content: "\e732";
}
.ti-microsoft:before {
	content: "\e733";
}
.ti-list-ol:before {
	content: "\e734";
}
.ti-linkedin:before {
	content: "\e735";
}
.ti-layout-sidebar-2:before {
	content: "\e736";
}
.ti-layout-grid4-alt:before {
	content: "\e737";
}
.ti-layout-grid3-alt:before {
	content: "\e738";
}
.ti-layout-grid2-alt:before {
	content: "\e739";
}
.ti-layout-column4-alt:before {
	content: "\e73a";
}
.ti-layout-column3-alt:before {
	content: "\e73b";
}
.ti-layout-column2-alt:before {
	content: "\e73c";
}
.ti-instagram:before {
	content: "\e73d";
}
.ti-google:before {
	content: "\e73e";
}
.ti-github:before {
	content: "\e73f";
}
.ti-flickr:before {
	content: "\e740";
}
.ti-facebook:before {
	content: "\e741";
}
.ti-dropbox:before {
	content: "\e742";
}
.ti-dribbble:before {
	content: "\e743";
}
.ti-apple:before {
	content: "\e744";
}
.ti-android:before {
	content: "\e745";
}
.ti-save:before {
	content: "\e746";
}
.ti-save-alt:before {
	content: "\e747";
}
.ti-yahoo:before {
	content: "\e748";
}
.ti-wordpress:before {
	content: "\e749";
}
.ti-vimeo-alt:before {
	content: "\e74a";
}
.ti-twitter-alt:before {
	content: "\e74b";
}
.ti-tumblr-alt:before {
	content: "\e74c";
}
.ti-trello:before {
	content: "\e74d";
}
.ti-stack-overflow:before {
	content: "\e74e";
}
.ti-soundcloud:before {
	content: "\e74f";
}
.ti-sharethis:before {
	content: "\e750";
}
.ti-sharethis-alt:before {
	content: "\e751";
}
.ti-reddit:before {
	content: "\e752";
}
.ti-pinterest-alt:before {
	content: "\e753";
}
.ti-microsoft-alt:before {
	content: "\e754";
}
.ti-linux:before {
	content: "\e755";
}
.ti-jsfiddle:before {
	content: "\e756";
}
.ti-joomla:before {
	content: "\e757";
}
.ti-html5:before {
	content: "\e758";
}
.ti-flickr-alt:before {
	content: "\e759";
}
.ti-email:before {
	content: "\e75a";
}
.ti-drupal:before {
	content: "\e75b";
}
.ti-dropbox-alt:before {
	content: "\e75c";
}
.ti-css3:before {
	content: "\e75d";
}
.ti-rss:before {
	content: "\e75e";
}
.ti-rss-alt:before {
	content: "\e75f";
}

/* ===========================================
   ÖNE ÇIKAN ÜRÜNLER SLIDER HEADER MARGIN TOP
   =========================================== */
.row.align-items-end.mb-3.mb-md-4 {
    margin-top: 3rem !important;
}

@media (min-width: 768px) {
    .row.align-items-end.mb-3.mb-md-4 {
        margin-top: 4rem !important;
    }
}
