body {
    background: var(--body-bg);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 0px;
}
@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ============ STOKDEPOM – MODERN KULLANICI PANELI TASARIMI (OVERRIDE) ============ */

:root {
    --sd-primary: #4f46e5;       /* İndigo Ana Renk */
    --sd-primary-light: #eef2ff; /* Açık İndigo */
    --sd-text: #1e293b;          /* Koyu Gri */
    --sd-text-muted: #64748b;    /* Silik Gri */
    --sd-border-radius: 16px;    /* Modern Yuvarlaklık */
    --sd-shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --sd-shadow-md: 0 10px 30px -10px rgba(0,0,0,0.08);
    --sd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Özel Renkler (Sipariş Detayı İçin) */
    --sd-order-blue: #3b82f6;    /* Sipariş No Mavisi */
    --sd-barcode-orange: #f97316;/* Barkod Turuncusu */
    --sd-btn-black: #111827;     /* Siyah Buton */
    --sd-btn-red: #ef4444;       /* Kırmızı Buton */
}

/* 1. Genel Konteyner ve Arka Planlar */
/* Body üzerinden hedefleme yaparak specificity artırıyoruz */
body.account-body .user-account-styles {
    --account-bg: #f8fafc !important; /* Arka planı hafif gri yapalım ki kartlar öne çıksın */
    background-color: #f8fafc !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Sol ve Sağ Wrapper'lar - Kart Görünümü */
body.account-body .user-account-left-wrapper,
body.account-body .user-account-right-wrapper {
    background: #ffffff !important;
    border-radius: var(--sd-border-radius) !important;
    box-shadow: var(--sd-shadow-md) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
}

/* Sol Menü Wrapper'ı sticky yapalım ki sayfa kayınca kalsın */
@media (min-width: 992px) {
    body.account-body .user-account-left-wrapper {
        position: sticky !important;
        top: 20px !important;
    }
}

/* 2. Kullanıcı Bilgi Kartı (Sol Üst) */
body.account-body .user-account-information {
    height: auto !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-bottom: 20px !important;
}

body.account-body .user-account-information .user-letters {
    width: 64px !important;
    height: 64px !important;
    background: linear-gradient(135deg, var(--sd-primary-light), #e0e7ff) !important;
    color: var(--sd-primary) !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15) !important;
    font-size: 24px !important;
}

body.account-body .user-account-information .user-band .name {
    color: var(--sd-text) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

body.account-body .user-account-information .user-band {
    color: var(--sd-text-muted) !important;
    font-size: 13px !important;
}

/* 3. Sol Menü Linkleri */
body.account-body .user-account-menu {
    margin: 0 !important;
    gap: 8px !important;
}

body.account-body .user-account-menu a {
    border-radius: 10px !important;
    height: 48px !important;
    padding: 0 16px !important;
    color: var(--sd-text-muted) !important;
    font-weight: 500 !important;
    border: 1px solid transparent !important;
    transition: var(--sd-transition) !important;
}

/* Menü İkonları */
body.account-body .user-account-menu a i {
    font-size: 18px !important;
    width: 24px !important;
    margin-right: 12px !important;
    color: #94a3b8 !important;
    transition: var(--sd-transition) !important;
}

/* Menü Hover ve Aktif Durumu */
body.account-body .user-account-menu a:hover,
body.account-body .user-account-menu a.active {
    background-color: var(--sd-primary-light) !important;
    color: var(--sd-primary) !important;
    font-weight: 600 !important;
    transform: translateX(4px) !important;
}

body.account-body .user-account-menu a:hover i,
body.account-body .user-account-menu a.active i {
    color: var(--sd-primary) !important;
}

/* 4. Sayfa Başlığı (Page Header) & Geri Butonu */
body.account-body .user-account-page-header {
    background: transparent !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px !important;
    height: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

body.account-body .user-account-page-header .title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--sd-text) !important;
    letter-spacing: -0.5px !important;
    
}

/* Geri Butonu (Modernleştirilmiş) */
body.account-body .user-account-page-header .back {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important; /* Daha yuvarlak */
    color: var(--sd-text) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    transition: var(--sd-transition) !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    margin-right: 20px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    order: 1 !important; /* Buton solda */
}

body.account-body .user-account-page-header .back:hover {
    background-color: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateX(-3px) !important; /* Sola hafif kayma */
    box-shadow: 0 4px 8px rgba(0,0,0,0.08) !important;
}

body.account-body .user-account-page-header .back i {
    margin-right: 8px !important;
    font-size: 12px !important;
}

/* 5. Sipariş Listesi (Order List) Kartları */
body.account-body .user-account-orders .order-list {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    box-shadow: var(--sd-shadow-sm) !important;
    margin-bottom: 20px !important;
    transition: var(--sd-transition) !important;
    overflow: hidden !important;
}

body.account-body .user-account-orders .order-list:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--sd-shadow-md) !important;
    border-color: var(--sd-primary-light) !important;
}

/* Sipariş Bilgileri */
body.account-body .user-account-orders .order-list .info .code .name {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #94a3b8 !important;
}

body.account-body .user-account-orders .order-list .info .code .value {
    color: var(--sd-primary) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Sipariş Durumu Badge (Renkli Etiketler) */
body.account-body .order-status .order-status-value {
    background: #f1f5f9 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

/* Yeşil (Success) */
body.account-body .order-status.order-status-success .order-status-value {
    background: #dcfce7 !important;
    color: #166534 !important;
}

/* Kırmızı (Danger) */
body.account-body .order-status.order-status-danger .order-status-value {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

/* Mavi (Primary) */
body.account-body .order-status.order-status-primary .order-status-value {
    background: #eff6ff !important;
    color: #1e40af !important;
}

/* Sipariş Resimleri */
body.account-body .user-account-orders .order-list .images img {
    border-radius: 8px !important;
    border: 1px solid #f1f5f9 !important;
    padding: 2px !important;
    transition: transform 0.2s !important;
}

body.account-body .user-account-orders .order-list .images img:hover {
    transform: scale(1.1) !important;
}

/* 6. SİPARİŞ DETAYI ÖZELLEŞTİRMELERİ */

/* Sipariş Numarası - MAVİ */
body.account-body .user-account-order-detail .order-header .item .value.value-code {
    color: var(--sd-order-blue) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

/* Barkod No Alanı */
body.account-body .order-tracking .code {
    background-color: #fff7ed !important; /* Açık turuncu zemin */
    color: var(--sd-barcode-orange) !important; /* Turuncu yazı */
    border: 1px solid #ffedd5 !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    border-radius: 8px !important;
}

/* Sipariş Butonları (Destek ve İade) */
body.account-body .user-account-order-detail .order-info .buttons {
    gap: 15px !important;
}

body.account-body .user-account-order-detail .order-info .buttons a {
    border: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    transition: all 0.2s ease !important;
    color: #fff !important; /* Yazılar Beyaz */
    border-radius: 10px !important;
}

body.account-body .user-account-order-detail .order-info .buttons a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15) !important;
}

body.account-body .user-account-order-detail .order-info .buttons a i {
    color: #fff !important; /* İkonlar Beyaz */
    opacity: 0.8 !important;
}

/* Destek Talebi Butonu - SİYAH */
body.account-body .user-account-order-detail .order-info .buttons a:first-child {
    background-color: var(--sd-btn-black) !important;
}

/* İade Talebi Butonu - KIRMIZI */
body.account-body .user-account-order-detail .order-info .buttons a:nth-child(2) {
    background-color: var(--sd-btn-red) !important;
}

/* Sipariş Özeti Kartları (Tracking Alanı) */
body.account-body .order-tracking {
    background: #fff !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f1f5f9 !important;
    margin-top: 20px !important;
}

/* 7. Favoriler ve Ürün Listeleri */
body.account-body .user-account-product {
    background: #fff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    box-shadow: var(--sd-shadow-sm) !important;
    transition: var(--sd-transition) !important;
    overflow: hidden !important;
}

body.account-body .user-account-product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

body.account-body .user-account-product .info .title {
    font-weight: 600 !important;
    color: var(--sd-text) !important;
    line-height: 1.4 !important;
}

/* Fiyat Alanı */
body.account-body .user-account-product .description .item .value.price {
    color: var(--sd-primary) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

/* Silme Butonu */
body.account-body .user-account-product .btn-remove {
    background: #fee2e2 !important;
    color: #ef4444 !important;
    border: none !important;
    transition: 0.2s !important;
}

body.account-body .user-account-product .btn-remove:hover {
    background: #ef4444 !important;
    color: #fff !important;
    transform: rotate(90deg) !important;
}

/* 8. Tablolar (Table) */
body.account-body .user-account-table .table th {
    background: #f8fafc !important;
    color: var(--sd-text-muted) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid #e2e8f0 !important;
    padding: 12px 16px !important;
}

body.account-body .user-account-table .table td {
    padding: 16px !important;
    vertical-align: middle !important;
    color: var(--sd-text) !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

body.account-body .user-account-table .table-hover tbody tr:hover {
    background-color: #f8fafc !important;
}

/* 9. Form Elemanları ve Butonlar (Right Wrapper İçindeki) */
body.account-body .user-account-right-wrapper .form-control {
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 14px !important;
    background-color: #fff !important;
    transition: all 0.2s !important;
}

body.account-body .user-account-right-wrapper .form-control:focus {
    border-color: var(--sd-primary) !important;
    box-shadow: 0 0 0 3px var(--sd-primary-light) !important;
}

body.account-body .user-account-right-wrapper .btn {
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
    transition: var(--sd-transition) !important;
}

body.account-body .user-account-right-wrapper .btn-primary, 
body.account-body .user-account-right-wrapper .btn-success {
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    border: none !important;
    color: #fff !important;
}

body.account-body .user-account-right-wrapper .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 12px -2px rgba(0,0,0,0.15) !important;
}

/* 10. CUSTOM SELECT (JS ile Oluşturulan Yapı İçin Stiller) */

/* Orijinal select'i gizle */
body.account-body .q-form-group .select-wrapper select.form-control[style*="display: none"] {
    display: none !important;
}

/* Custom Select Konteyner */
.sd-custom-select {
    position: relative;
    width: 100%;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

/* Tetikleyici (Görünen Kutu) */
.sd-select-trigger {
    background-color: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    height: 48px; /* Diğer inputlarla eşit */
}

.sd-select-trigger:hover {
    border-color: var(--sd-primary);
}

.sd-custom-select.open .sd-select-trigger {
    border-color: var(--sd-primary);
    box-shadow: 0 0 0 3px var(--sd-primary-light);
}

/* Ok İkonu */
.sd-select-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--sd-text-muted);
    border-bottom: 2px solid var(--sd-text-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 10px;
}

.sd-custom-select.open .sd-select-arrow {
    transform: rotate(-135deg);
    border-color: var(--sd-primary);
}

/* Açılır Menü (Options) */
.sd-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 250px;
    overflow-y: auto;
}

.sd-custom-select.open .sd-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tekil Seçenek */
.sd-option {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sd-text);
    cursor: pointer;
    transition: background 0.1s ease;
    border-bottom: 1px solid #f8fafc;
}

.sd-option:last-child {
    border-bottom: none;
}

.sd-option:hover {
    background-color: #f8fafc;
    color: var(--sd-primary);
}

.sd-option.selected {
    background-color: var(--sd-primary-light);
    color: var(--sd-primary);
    font-weight: 600;
}

/* 11. Mobil Uyum İyileştirmeleri */
@media (max-width: 991px) {
    body.account-body .user-account-mobile-menu-wrapper {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    body.account-body .user-account-mobile-menu .menu-header {
        border-bottom: 1px solid #f1f5f9 !important;
        padding-bottom: 15px !important;
    }
    
    body.account-body .user-account-page-header .title {
        font-size: 20px !important;
    }
    
    /* Mobilde kart iç boşluklarını biraz azaltalım */
    body.account-body .user-account-right-wrapper {
        padding: 16px !important;
    }
}
.login-body {
    padding-top:0px;
}
.forgot_password-body{
    padding-top: 0px;
}
.login-section-form{
    align-content:center
}
.login-container-form{
    display: flex;
    justify-content: center;
    align-items: center;
}

.dealer_application-body{
    padding-top:0px;
}
.user-account-top-wrapper{
        display:none;
}
.q-form-soft{
    background: #baffbc;
}
.user-account-right-wrapper .btn-secondary{
   
}
/* Reset */
a {
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-color2);
}
.user-account-order-detail .order-products-list .product .buttons a.p-comment{
    display: none;
}
.user-account-order-detail .order-products-list .product .buttons a:first-child{
    display: none;
}
.user-account-order-detail .order-tracking a{
    display:none!important;
}
.user-account-order-detail .order-tracking .group-1{
    display: none!important;
}
.user-account-order-detail .order-status i{
    display:none!important;
}
.user-account-order-detail .order-bottom a{
    display: none!important;
}
.user-account-order-detail > .order-addresses:first-of-type {
    display:none !important;
}

.user-account-orders .order-list .info .delivery{
    display: none!important;
}
.user-account-no-records .icon{
    display: none;
}
.user-account-page-header .toolbar .btn{
    background: #3F51B5;
    border-color: #3F51B5;
}
.user-account-no-records .btn{

}
.user-account-nav-wrapper .nav-tabs .nav-item:nth-child(3) {
    display:none!important;
}
.user-account-nav-wrapper .nav-tabs .nav-item:nth-child(4) {
    display:none!important;
}
.user-account-nav-wrapper .nav-tabs .nav-item:nth-child(5) {
    display:none!important;
}
/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner-logo {
  position: relative;
  width: 100px;
  height: 100px;
}

.spinner-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: contain;
}

.spinner-logo .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 6px solid transparent;
  border-top-color: #5a00f0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 1s linear infinite;
  box-shadow: 0 0 15px rgba(90, 0, 240, 0.3);
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}




/* Opacity */
.op-black {
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.op-black.hide {
    visibility: hidden;
    opacity: 0;
}

.op-black.show {
    visibility: visible;
    opacity: 1;
}

/* Header (Desktop) */
header.desktop  {
    background: #fff;
}

header.logged_in{
    background: #fff;
}
.header_info{
    color:red;
    font-size:12px;
    padding:1px;
}

header.desktop .h-contact {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.dropdown-languages-1 .dropdown-toggle {
    color: var(--header-top-color);
    transition: all var(--transition-time);
}

.dropdown-languages-1 .dropdown-toggle:hover{
    color: var(--header-top-color-hover);
}

.dropdown-currencies-1 .dropdown-toggle {
    color: var(--header-top-color);
    transition: all var(--transition-time);
}

.dropdown-currencies-1 .dropdown-toggle:hover{
    color: var(--header-top-color-hover);
}

header.desktop .h-contact .info {
    height: 35px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

header.desktop .h-contact .info .item {
    font-size: 13px;
    color: var(--header-top-color);
    transition: all var(--transition-time);
    margin-right: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

header.desktop .h-contact .info .item:hover{
    color: var(--header-top-color-hover);
}

header.desktop .h-contact .info .item i {
    margin-right: 6px;
    font-size: 13px;
}

header.desktop .h-contact .info .item.wp i {
    font-weight: normal;
    font-size: 20px;
}

header.desktop .h-contact .social-media {
    height: 35px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

header.desktop .h-contact .social-media a {
    margin-left: 15px;
    font-size: 14px;
    color: var(--header-top-color);
}

header.desktop .h-contact .social-media a:hover{
    color: var(--header-top-color-hover);
    transition: all var(--transition-time);
}

header.desktop .header-area {
    height: 96px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
}

header.desktop .header-area.last {
    align-items: flex-end;
}

header.desktop .logo {
    align-items: flex-start;
    -webkit-align-items: flex-start; 
}

header.desktop .logo a img {
    max-height: 30px;
}
header.desktop .nav .nav-item .nav-link {
    color:#150150;
    font-weight: 600;
    font-size: 16px;
}
.nav-link{
    padding: 5px 12px;
}


header.desktop .search {
    width: 100%;
    position: relative;
    transition: all var(--transition-time);
}

header.desktop .search form {
    width: 100%;
}

header.desktop .search form .input-box {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}

header.desktop .search form input {
    float: left;
    color: #666;
    font-weight: 400;
    width: 100%;
    font-size: 13px;
    border: 1px solid #cecece;
    border-radius: 10px;
    background: #f9f9f9 !important;
    height: 40px;
    box-shadow: none;
    padding-left: 20px;
}

.easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
}

.easy-autocomplete-container ul .eac-category, .easy-autocomplete-container ul li {
    font-size: 13px;
    padding: 3px 10px;
    border-bottom: 1px solid #ebebeb;
}

header.desktop .search form input::placeholder {
    color: #666;
}

header.desktop .search:hover,
header.desktop .search:focus,
header.desktop .search:active{
    border-color: var(--main-color2);
}

section.h-center{
    height: 96px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}
.site-header.scrolled {
  border-bottom: 1px solid #e3e8ef;
}

header.desktop .search form .btn-send {
    position: absolute;
    right:50px ;
    height: 40px;
    border-width: 0;
    color: var(--main-color2);
    border-radius: 0;
    font-size: 16px;
    top: 0px;
    transition: all var(--transition-time);
}

header.desktop .easy-autocomplete-container {
    top: 47px;
}

header.desktop .menu {
    background: var(--menu-bg-color);
    height: 48px;
    border: 1px solid #ebebeb;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid #f4f4f4;
    box-shadow: 0 0 12px -13px rgb(0 0 0 / 75%);
}

header.desktop .mega-menu {
    padding: 0;
    position: relative;
}

header.desktop .mega-menu .navbar-nav {
    flex-direction: row;
    height: 45px;
    justify-content: space-evenly;
}

header.desktop .mega-menu .nav-item {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
}

header.desktop .mega-menu .nav-link {
    padding: 0;
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--menu-color);
    line-height: normal;
    font-weight: 600;
    font-size: 14px;
    padding: 0 5px;
    white-space: unset !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-time);
}

header.desktop .mega-menu .nav-link::after {
    display: none;
}

header.desktop .mega-menu .nav-link:hover {
    color: var(--menu-color-hover);
}

header.desktop .mega-menu .nav-item:last-child .nav-link {
    border-right: 0;
    color: red;
}
  
header.desktop .mega-menu .dropdown {
    position: static;
}

header.desktop .mega-menu .dropdown-menu {
    border-radius: 0;
    background-color: #fff;
    width:100%;
    left:-1px;
    right:0;
    top:45px;
    position: absolute;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 5%);
    border: 1px solid #ebebeb;
    border-top: 0;
}

header.desktop .mega-menu .dropdown:hover .dropdown-menu, 
header.desktop .mega-menu .dropdown .dropdown-menu:hover {
    display:block!important;
}

header.desktop .h-banner{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Mega Menu Container */
.mega-menu-container {
    padding: 20px;
}

.mega-menu-container .sub-cat{
    margin-bottom: 15px;
}

.mega-menu-container .sub-title {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
    transition: all var(--transition-time);
}

.mega-menu-container .sub-title:hover{
    color: var(--main-color);
}

.mega-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.mega-menu-container ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.mega-menu-container ul li a {
    font-size: 13px;
    color: #222;
    font-weight: 400;
    line-height: 25px;
    transition: var(--transition-time);
}


.mega-menu-container ul li a.sub-title {
    color: #333;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
}

.mega-menu-container ul li a:hover {
    color: var(--main-color);
}




/* Mega Menu Side */

.mega-menu.side .mega-menu-container ul li{
    display: inline-block;
}

.mega-menu.side .mega-menu-container .comma{
    margin-right:4px;
}

.mega-menu.side .mega-menu-container ul li:last-child .comma{
    display:none;
}
/* Single Menu */
.single-menu-container{
    display: block;
}
.single-menu-container .single-menu{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    height: 46px;
    align-items: center;
}

.single-menu-container .single-menu li:first-child{
    margin-left: 0;
}

.single-menu-container .single-menu li{
    display: inline-block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 100;
}

.single-menu-container .single-menu li .sub-single-item{
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--menu-color);
    line-height: normal;
    font-weight: 600;
    font-size: 14px;
    padding: 0 5px;
    white-space: unset !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-time);
}

.single-menu-container .single-menu li:hover>a:after {
    width: 100%;
}

.single-menu-container .single-sub-menu li a{
    border: 1px solid #ebebeb;
    animation: all ease .5s;
    -webkit-animation: all ease .5s;
    padding: 20px 15px;
    border-top: 0;
}

.single-menu-container .single-menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    top: 45px;
    min-width: 170px;
    position: absolute;
    left: 0px;
    background: #fff;
    z-index: 99;
    transform: translate(0,20px);
    transition: all 0.2s ease-out;
    -webkit-box-shadow: 1px 1px 6px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 6px -4px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 6px -4px rgba(0,0,0,0.75);
}


.single-menu-container .single-menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}

.single-menu-container .single-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: #333;
    background: #fff;
    transition: var(--transition-time);
}

.single-menu-container .single-menu ul li a:hover,.single-menu ul li:hover>a {
    color: var(--main-color);
}

.single-menu-container .single-menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

.single-menu-container .single-menu ul ul {
    left: 100%;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px,20px);
    transition: all 0.2s ease-out;
}


.single-menu-container .single-menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}


/* Mobile Header */
.mobile-header-space {
    height: 60px;
    display: none; 
}

header.mobile {
    display: none;
    background: #fff;
    height: 60px;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

header.mobile .left {
    width: 30%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
}

header.mobile .center {
    width: 40%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header.mobile .right {
    width: 60%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

header.mobile .logo img {
    max-height: 55px;
}

header.mobile .icon-group {
    position: relative;
}

header.mobile .icon-group {
    position: relative;
    color: #333;
    font-size: 32px;
}

header.mobile .icon-group .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: var(--main-color2);
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .mobile-search {
    padding: 0;
    background: #f3f3f3;
}

header.mobile .mobile-search form {
    width: 100%;
}

header.mobile .mobile-search form .input-box {
    width: 80%;
}

header.mobile .mobile-search form input {
    float: left;
    color: #444;
    width: 100%;
    font-size: 15px;
    border-color: transparent;
    background: transparent !important;
    height: 65px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    outline: 0 !important
}

header.mobile .mobile-search form input::placeholder {
    color: #444;
}

header.mobile .mobile-search form input:focus,
header.mobile .mobile-search form input:hover {
    border-color: transparent !important;
}

header.mobile .mobile-search form .btn-send {
    float: right;
    width: 20%;
    height: 65px;
    border: 0;
    background: transparent !important;
    color: #333;
    font-size: 19px;
}

header.mobile .h-banner{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
button:focus {
    outline:0px !important; 
    outline:0px !important;
}

 /*Buttons*/
.button-6 {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  padding: 9px 24px;
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.button-7 {
  background: linear-gradient(90deg, #4a6cf7 0%, #f46cc5 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-7:hover {
  opacity: 0.9;
  transform: scale(1.03);
  color:#fff;
}


/* Sidebar User */
.ticket-status.ticket-status-1{
    background: #4CAF50;
}
.user-account-ticket-detail .replies .reply-wrapper.reply-wrapper-1 .reply{
    background: #134d37;
    color: #fff;
}
.user-account-ticket-detail .replies .reply-wrapper .reply{
    background: #242626;
    color:#fff;
    max-width: 47%;
}
.user-create-collection .checkbox-option{
    display:none;
}
.sidebar-user {
    background: #fff;
    width: 325px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .7s;
    z-index: 21;
    right: 0;
    margin-right: -325px;
}

.sidebar-user.active {
    margin-right: 0;
}

.sidebar-user .title {
    padding: 10px;
    background: #fff;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.sidebar-user .title img {
    width: 225px;
    float:left;
}

.sidebar-user .title .btn-close {
    color: #717171;
    font-size: 24px;
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin: 10px;
    border: 1px solid #e1e1e1;
}

.sidebar-user .login-menu a i {
    width: 30px;
    text-align: left;
    margin-right: 10px;
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-top:2px solid #673ab747;
    margin-top: 40px;
}

.sidebar-user .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .footer-links ul {
    margin: 0;
    padding: 0;
}

.sidebar-user .footer-links ul li {
    padding: 0;
    list-style: none;
}

.sidebar-user .footer-links ul li a {
    display: block;
    padding: 15px;
    border-bottom: 2px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.sidebar-user .footer-links ul li a.wp i {
    color: #21bd5c;
}

.sidebar-user .footer-links ul li a i {
    text-align: center;
    width: 40px;
    font-size: 16px;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -250px;
}

.sidebar-menu.active {
    margin-left: 0;
}

.sidebar-menu .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu .title .btn-close {
    color: #fff;
}

.sidebar-menu .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu .links a i {
    float: right;
}

.sidebar-menu .categories {
    /*display: none;*/
}

.sidebar-menu .categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .categories ul li {
    padding: 0;
    list-style: none;
}

.sidebar-menu .categories ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu .categories ul li a .name {
    width: 80%;
}

.sidebar-menu .categories ul li a .icon {
    color: #777;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 18px;
}

.sidebar-menu .categories ul .multi {
    display: none;
}

.sidebar-menu .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu .categories ul .multi .multi a {
    padding-left: 40px;
}

.sidebar-menu .categories ul .multi .multi .multi a {
    padding-left: 60px;
}

/* Stores */
.stores {
    background: #fff;
    border-top: solid 1px #e6e6e6;
    padding: 10px 0;
}

.stores .cards {
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.stores .card {
    border: none;
    box-shadow: none;
    margin: 0 !important;
    border-left: 1px solid #e6e6e6;
}

.stores .card:first-child {
    border-left: 0;
}

.stores .card .card-body {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}

.stores .card .card-body img {
    max-height: 80%;
    max-width: 60%!important;
    margin: 0 auto;
}

.stores .card .card-header {
    display: none;
}

.stores .text-white {
    font-weight: bold;
    font-size: 12px !important;
}

/* Footer */

footer {
    background: #fff;
}

footer .bb {
    padding: 20px 0;
}

footer .logo-area {
    text-align: left;
    margin: 15px 0;
}

footer .logo-area .logo img {
    max-height: 100px;
    max-width: 230px;
}

footer .logo-description {
    margin-top: 15px;
}

footer .info {
    padding: 25px 0;
}

footer .title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

footer .title-2 {
    color: #00aaff;
    font-size: 13px;
    
}

footer .title-3 {
    color: #333;
    font-size: 17px;
    
}

footer .secure .description {
    color: #000;
    margin: 5px 0;
}

footer .secure img {
    opacity: .5;
}

footer .info ul {
    padding: 0;
    margin: 0;
}

footer .info ul li {
    list-style: none;
    padding: 3px 0;
    color: #000;
    font-size: 13px;
}

footer .info ul li a {
    display: block;
    color: #000;
    font-size: 13px;
    position: relative;
    padding-left: 15px;
    line-height: 25px;
    transition: all var(--transition-time);
}

footer .info ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: ">";
}

footer .info ul li a:hover {
    color: var(--main-color);
}

footer .bar {
    padding: 10px 0;
    background: #fff;
}

footer .bar a {
    color: #333;
    text-align: center;
}

footer .bar a:hover {
    color: #333;
}

footer .bar p {
    margin: 0;
    color: #333;
}

/* Mobile Menu Tip 2 */

.sidebar-menu-type-2 {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -100%;
}

.sidebar-menu-type-2.active {
    margin-left: 0;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu-type-2 .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu-type-2 .title .btn-close {
    color: #fff;
}

.sidebar-menu-type-2 .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu-type-2 .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu-type-2 .links a i {
    float: right;
}

.sidebar-menu-type-2 .categories {
    /*display: none;*/
}

.sidebar-menu-type-2 .categories ul {
    margin: 0;
    padding: 10px;
}

.sidebar-menu-type-2 .categories ul li {
    padding: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
}

.sidebar-menu-type-2 .categories ul li a img{
    height: 35px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .categories ul li a {
    display: flex;
    padding: 10px;
    border-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
}

.sidebar-menu-type-2 .categories ul li a .name {
    width: 80%;
}

.sidebar-menu-type-2 .categories ul li a .icon {
    color: #000;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    position: absolute;
    right: 22px;
}

.sidebar-menu-type-2 .categories .multi li a .icon {
    right: 13px;
}

.sidebar-menu-type-2 .easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
    top: 65px;
}

.sidebar-menu-type-2 .categories ul li a .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories .multi .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories ul .multi {
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi li:first-child{
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu-type-2 .categories .multi li {
    border: 0 !important;
    margin-bottom: 5px;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding: 0;
}

.sidebar-menu-type-2 .categories ul .multi .multi a {
    padding-left: 20px;
    font-size:12px;
}

.sidebar-menu-type-2 .mobile-search i{
    font-size: 25px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .mobil-area-title {
    color: #000;
    margin: 15px 10px 10px 13px;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.sidebar-menu-type-2 .mobil-area-1 {
    display: flex;
    position: relative;
    text-align: center;
}

.sidebar-menu-type-2 .mobil-area-1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    justify-content: center;
    border: 1px solid #e2e2e2;
    margin: 0 10px;
    padding: 7px 1rem;
    color: #000;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-menu-type-2 .mobil-area-1 a img {
    margin-right: 10px;
    padding: 0;
    width: 41px;
    height: 41px;
}

.sidebar-menu-type-2 .logo-area a img {
    height: 70px;
    max-width: 250px;
}

.sidebar-menu-type-2 .logo-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px;
}

.mobile-menu-close {
    display: flex;
    justify-content: center;
    margin-right: 19px;
    font-size: 20px;
    align-items: center;
}

.mobile-menu-close i {
    border: 1px solid #e2e2e2;
    padding: 0.5rem;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #e2e2e2;
    padding-top: 10px;
    padding-left: 9px;
}

.mobil-area-2 {
    margin: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar-menu-type-2 .short-link {
    width: 50%;
    padding: 15px 10px;
}

.sidebar-menu-type-2 .short-link.border-1{
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-2{
    border-bottom: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-3 {
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sidebar-menu-type-2 .short-link a i {
    margin-right: 10px;
    font-size: 20px;
}

.mobil-area-footer {
    text-align: center;
    color: #000;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 90%;
    box-sizing: border-box;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

/* Custom */
.advanced-product-search .aps-content .items .item .p-info .name{
    max-height: 40px;
    overflow: hidden;
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb {
  background: #888; 
}
.product-body .product-rate{
    padding: 5px 10px;
    color: #111;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    display: inline-flex;
}

.product-profile-1 .carousel .carousel-indicators {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
    margin: 0;
    z-index: 0;
    flex-direction: column;
    align-content: center;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    max-height: 100px;
    overflow: scroll;
}
.card-category .image{
    border-radius: 50%;
    overflow: hidden;
}
.login-body .p-g-mod-t-4{
    padding: 30px;
}

.login-body .p-g-mod-t-4 .nav-tabs {
    border: 0 !important;
    background: transparent !important;
    border-radius: 4px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-item {
    flex: 1;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #e9e9e9 !important;
    background: #e9e9e9;
    color: #777;
    font-weight: 600;
    transition: all var(--transition-time);
    font-size: 16px;
}

.login-body .p-g-mod-t-4 .btn-without-login {
    color: #fff;
    background: var(--main-color) !important;
    border: none;
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
}

.login-body .p-g-mod-t-4 .btn-without-login i{
    line-height: 0;
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-item.show .nav-link,
.login-body .p-g-mod-t-4 .nav-tabs .nav-link.active {
    border: 1px solid #c5c5c5 !important;
    background: #fff !important;
    color: #000 !important;
}

.login-body .p-g-mod-t-4 .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    height: 45px;
    align-items: center;
    font-weight: 600;
}

.login-body .p-g-mod-t-4 .btn-fb-login {
    background: #4c69ba!important;
    background-image: linear-gradient(#4c69ba,#3b55a0)!important;
    text-shadow: 0 -1px 0 #354c8c!important;
    color: #fff!important;
    border: 1px solid #4c69ba!important;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.login-body .p-g-mod-t-4 .btn-fb-login i {
    padding-right: 10px!important;
    border-right: 0 !important;
}

.login-body .p-g-mod-t-4 .btn-google-login {
    background: #db4437!important;
    background-image: linear-gradient(#db4437,#cc3e32)!important;
    text-shadow: 0 -1px 0 #db4437!important;
    color: #fff!important;
    border: 1px solid #db4437!important;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.login-body .p-g-mod-t-4 .btn-google-login i{
    padding-right: 10px!important;
    border-right: 0 !important;
}

.product-body .variant-box ul li .options a{
    padding: 10px 15px;
    font-weight: 600;
}

.product-body .variant-box ul li .options a.active{
    background: var(--main-color2);
    border-color: var(--main-color2);;
    color: #fff;
}
.product-body .accordion-product .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
    border: 0;
}

.accordion-product {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0;
    border-radius: 0;
}

.accordion-product .btn-link {
    color: #222;
    text-decoration: none !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 11px 0px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
    border-radius: 0;
    padding: 11px 10px;
}

.accordion-product .card-header i {
    font-size: 11px;
    padding-top: 3px;
}

.product-contact {
    border: 1px solid #ebebeb;
    padding: 10px;
    color: #444;
    background: #fff;
    width: 100%;
}

.product-body .product-favourite {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    align-content: center;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    margin-left:0;
}

.product-body .product-buttons{
    margin-bottom: 10px;
    padding: 0 5px;
    background: #fff;
}

.product-body .product-favourite a i{
    margin: 0 !important;
}

.product-body .product-code-area{
    display: flex;
    flex-direction: column;
}

.product-contact .fa-whatsapp {
    color: #25d366;
}

.code-area-value{
    font-weight: 600;
}
.product-contact a {
    color: #444;
}

.product-contact i {
    color: #b61414;
    font-size: 15px;
}

.product-price-group .free-cargo-badge{
    background: #40903f;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    width: inherit;
}

.product-profile-1 .variant-box{
    background: #fff;    
}
.variant-box{
    border:0px;
}

.product-profile-1 .discount{
    height: 40px;
    width: 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid var(--main-color2);
    border-radius: 5px;
    z-index: 1;
}

.product-body{
    background: #fff !important;
}

.product-body .product-profile-info li{
    display: flex;
    margin: 5px 0;
}

.product-body .product-profile-info .sale-price-discount{
    background: var(--main-color2);
    color: #ffffff;
    border-radius: 5px;
}

.product-price-group .prices .sale-price{
    font-size: 22px;
}

.product-price-group .prices .list-price{
    font-size: 14px;
}

.product-body .product-profile-info{
    background: #fff;
    padding: 10px;
}

.product-body .product-info-name{
   /* flex: 0 0 auto;
    width: 30%;*/
    color: #5e5e5e;
}

.product-body .product-profile-info .value{
    flex: 1 1 auto;
    display: flex;
    align-items: baseline;
    word-break: break-word;
}

.product-body .p-g-mod-base-content{
    background: transparent !important;
    border: 0 !important;
}

.card-product .card-product-inner .price-group .discount{
    background: var(--main-color2);
}
.card-product .card-product-inner .image-wrapper .image img{
    border-radius: 16px 16px 0px 0px;
}
.card-product .card-product-inner{
    padding: 0px;
}
.category-card-product{
    margin:25px 0px;
    padding: 0px;
    border-radius: 16px;
    border:1px solid #e1e1e1;
}
.category-card-product:hover{
    border:1px solid #e1e1e1;
   box-shadow: 0 25px 50px -12px #00000040;
}

.categories-body .category-filter-list .list-wrap .list li{
    float: left;
    font-size: 13px;
    color: #212529;
    display: inline-block;
    line-height: 18px;
    font-weight: 400;
    width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.categories-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info{
    align-items: flex-start;
}

.categories-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title{
    display: block;
    line-height: 22px;
    font-size: 15px;
    color: #212529;
    font-weight: 600;
    padding: 0 0 10px;
}
.blogs-body .pattern-group .p-g-mod .p-g-mod-header {
    border-bottom: 0;
}

.home-blog{
    background: var(--main-color3) !important;
    padding: 40px 0;
}

.home-blog .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description{
    padding-top: 20px;
    margin-bottom: 20px;
}

.home-blog .p-g-mod-header.p-g-mod-header-p-0{
    height: auto;
}

.card-blog .title{
    display: block;
    margin-top: 10px;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #444;
    font-weight: 400;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 20px;
}

.story-manset .p-g-mod-t-44 .col-list-p-v-1{
    padding-top: 0 !important;
}

.card-product .card-product-inner .price-group .prices .list-price{
    text-decoration: line-through;
}

.butik-story{
    border: 1px solid #e9e9e9;
}

.show-category .card-product .card-product-inner .price-group .prices .list-price,
.butik-story .card-product .card-product-inner .price-group .prices .list-price{
    line-height: 20px;
    height: 20px;
    margin-bottom: 5px;
    color: #b4b4b4;
    -moz-text-decoration-color: #b4b4b4;
    text-decoration-color: #b4b4b4;
    font-weight: 400;
    line-height: 25px;
}

.show-category .card-product .card-product-inner .price-group,
.butik-story .card-product .card-product-inner .price-group{
    justify-content: flex-start;
}

.show-category .card-product .card-product-inner .price-group .prices .sale-price,
.butik-story .card-product .card-product-inner .price-group .prices .sale-price{
    padding: 0 5px;
    background: #f24504;
    color:#fff;
    border-radius: 5px;
    margin-top: 5px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 600;
}

.show-category .homepage-sale-desc,
.butik-story .homepage-sale-desc{
    font-size: 12px;
    margin-right: 5px;
}
.five-banners{
    padding: 10px 25px 10px 25px;
    background: #f9f9f9 !important;
}

.card-product .card-product-inner .title{
    display: block;
    width: 100%;
    padding: 0;
    line-height: 19px;
    height: 19px;
    font-weight: 600;
    font-size: 14px;
    color: #404040;
    white-space: nowrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.card-category .title{
    font-weight: 400;
    font-size: 13px;
    color:#000;
}

.p-g-mod-t-12 .p-g-mod-body .social-share {
    border-top: 1px solid rgba(0,0,0,.1);
    font-size: 12px;
    margin-top: 10px;
}

.p-g-mod-t-15 .p-g-mod-body.p-g-mod-body-p-0 ul li a,
.p-g-mod-t-16 .p-g-mod-body.p-g-mod-body-p-0 ul li a,
.p-g-mod-t-58 .p-g-mod-body.p-g-mod-body-p-0 ul li a {
    padding: .75rem 10px;
}

.card-blog .buttons .btn-read-more {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 13px;
    border-radius: 3px;
    padding: 5px 15px;
    width: 100%;
}

.card-blog .buttons .btn-read-more i {
    font-size: 9px;
    margin-left: 5px;
}

.category-filter-order-desktop{
    display: inline-block;
    width: 170px;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    font-size: 13px;
    color: #4a4a4a !important;
    font-weight: 400;
    padding-left: 14px;
    border: 1px solid #e7e3e3 !important;
    border-radius: 3px;
    background: url(images/select-arrow.svg) no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    outline: none;
}

.category-filter-order-desktop:focus{
    border-color: #e7e3e3 !important;
}

.categories-body .product-view-select a div {
    width: 9px;
    height: 13px;
    background: #e2e6eb;
    border-radius: 1px;
    margin:0 2px;
}

.categories-body .product-view-select a.active div {
    background: var(--main-color);
}

.categories-body .product-view-select a {
    background: #fff;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #e7e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-left: 10px;
    transition: var(--transition-time);
    padding:0 10px;
}

.category-filter-order .list-wrap {
    background: #673AB7;
    padding: 10px 20px;
}

.category-filter-order .list-wrap .list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    justify-content: space-between;
}

.categories-body .pattern-group .p-g-mod-t-20 > .p-g-mod-header {
    border-bottom: 0;
    padding-left:0 !important;
}
.pattern-group .p-g-mod-header{
    margin-bottom: 0!important;
}

.category-filter-order .list-wrap .list li {
    flex: inherit;
}

.category-filter-order-mobile{
    display: none;
}

.pattern-group .p-g-mod-showcase .p-g-mod-header{
    border-bottom: 0;
}

.card-product .card-product-inner .price-group .prices .sale-price {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: normal;
}

.card-product-content{
    text-align: center;
    color: #555;
}

.card-product .card-product-inner .product-label img {
    max-height: 35px;
}

.category-filter-order .list-wrap .list li .lag-checkbox{
    transition: all var(--transition-time);
}

.category-filter-order .list-wrap .list li.active .lag-checkbox,
.category-filter-order .list-wrap .list li:hover .lag-checkbox {
    background: var(--main-color);
    color: #fff;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .buttons .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    width: 100%;
    margin: 0 !important;
    border-radius: 0;
}

.categories-body .p-g-mod-t-cat-filter{
    margin-bottom: 10px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    border: 1px solid #ebebeb;
    margin-bottom: 0px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link{
    transition: var(--transition-time);
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link:hover{
    color: var(--main-color);
}
.product-details-tab-product-details-tab-colorful .tab-content{
    border: 1px solid #ebebeb;
    border-top: 0;
}
.carousel-indicators li{
    opacity: 1!important;
    
}
.product-profile-1 .carousel .carousel-indicators li{
    border:2px solid #e6e6e6!important;
    padding: 2px 0px!important;
    max-width: 40px!important;
    border-radius: 8px;
}
.product-profile-1 .carousel .carousel-indicators li.active {
    border-color: #150150!important;
}
.product-profile-1 .carousel .carousel-indicators li img{
    border-radius: 4px;
}
.product-profile-1 .carousel .carousel-outer{
    
}

.product-profile-1 .carousel .carousel-inner img{
    border-radius: 16px;
}

.product-profile-1 .carousel .carousel-inner .carousel-item{
    border-radius: 16px;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s cubic-bezier(0, 1.68, 1, 1);
}

.product-profile-1 .carousel .carousel-inner{
    border:0!important;
    
}

.product-badges .p-badge {
    height: 55px;
    background: #fff;
}

.p-g-mod-base-content{
    border: 0px solid #ebebeb;
}

.p-g-mod-t-10 .p-g-mod-body a,
.p-g-mod-t-2 .p-g-mod-body a{
    transition: all var(--transition-time);
}

.contact-info{
    display: flex;
    flex-direction: column;
}

.contact-info .contact-item{
    margin: 5px 0;
    display: flex;
    align-content: center;
    cursor: pointer;
}

.contact-info .contact-item i{
    margin-right: 10px;
    font-size: 17px;
    transition: all var(--transition-time);
}

.contact-info .contact-item a{
    color: #000;
}

.contact-info .contact-item:hover i{
    color: var(--main-color);
}

footer .bar .cards {
    min-height: auto;
    background: inherit;
}

footer .bar .right-image {
    text-align: right !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.product-profile-info .sale-price-discount,
.hizli-sepet .sale-price-discount{
    display: inline-flex;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.product-profile-info .sale-price-discount .sale-price,
.hizli-sepet .sale-price{
    font-size: 20px;
    font-weight: 600;
}

.card-product .sale-price-basket {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 5px 0;
    margin: 3px 0;
    flex-direction: column;
}

.card-product .sale-price-basket .sale-price{
    font-weight: 500;
    font-size: 15px;
}

.native-modal.show .hizli-sepet .related-products {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: inherit;
}

.native-modal.show .hizli-sepet .fast-product-cart-box::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 7px;
    }
    
.native-modal.show .hizli-sepet .fast-product-cart-box::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: rgb(181 181 181 / 50%);
      -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.hizli-sepet {
    max-width: 960px !important;
}

.native-modal.show .hizli-sepet .modal-content {
    border: 0;
    border-radius: 0;
    position:relative;
}

.native-modal.show .hizli-sepet .modal-content .prices{
    display: flex;
    align-items: center;
}

.native-modal.show .hizli-sepet .modal-content .fast-product-title{
    font-size: 19px;
    color: #151515;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 25px;
}
.product-reviews .stars .star{
    font-size: 16px;
    color:#FFC107;
}

.native-modal.show .hizli-sepet .modal-content .product-reviews .stars .star {
    color: #dbdbdb;
    font-size: 12px;
    margin-right: 1px;
}

.native-modal.show .hizli-sepet .modal-content .product-reviews .stars{
    margin: 15px 0;
}

.native-modal.show .hizli-sepet .modal-content .iliskili-urunler{
    color: #858585;
    font-weight: 600;
}

.native-modal.show .hizli-sepet .modal-content .iliskili-urunler .value{
    color: #000;
}

.native-modal.show .hizli-sepet .modal-content .product-price-group .prices .list-price {
    font-size: 19px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.native-modal.show .hizli-sepet .modal-content .short-desc{
    color: #454545;
    font-size: 14px;
    margin-bottom: 15px;
}

.native-modal.show .hizli-sepet .carousel-indicators li{
    width: 10px;
    height: 10px;
    background-color: #898989;
    border-radius: 50%;
    border: 4px solid transparent;
}

.native-modal.show .hizli-sepet .carousel-indicators li.active {
    opacity: 1;
    background-color: #000 !important;
    border: 4px solid #c3c3c3;
}

.native-modal.show .hizli-sepet .product-favourite2{
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 3px;
    -webkit-box-shadow: 0px -2px 18px -3px rgb(0 0 0 / 58%);
    box-shadow: 0px -2px 18px -3px rgb(0 0 0 / 58%);
}

.native-modal.show .hizli-sepet .product-buttons {
    display: inline-flex;
    flex-wrap: nowrap;
}

.native-modal .native-modal-close{
    z-index:9;
    outline:0;
}

.native-modal.show .hizli-sepet .fast-product-cart-box{
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: 600px;
    overflow-y: auto;
}

.native-modal.show .hizli-sepet .modal-body{
    padding:0 !important;
}


/* Ürün Detay - Birim */

.product-body .product-profile-1 .product-unit {
    display: flex;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    border-radius: 5px;
    border: solid 1px #d9d9d9;
    width: 95px;
    padding: 5px 0;
    margin-right: 10px !important;
    height: 46px;
    margin: 10px 0;
}

.product-body .product-profile-1 .product-unit  input[type=checkbox],
.product-body .product-profile-1 .product-unit  input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;
}

.product-body .product-profile-1 .product-unit input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #96be67;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid #ebebeb;
}

/* Ürün Kartı - Adet Seçimi */

.card-product .card-product-inner .quantity {
    margin: 5px 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-basis: auto;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn {
    display: flex;
    width: 35px;
    height: 35px;
    color: #555;
    font-size: 10px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    align-items: center;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn:first-child {
    border-radius: 0;
}

.card-product .card-product-inner .quantity .btn:hover {
    color: #333;
    background: #f2f2f2;
    border-color: #f5f5f5;
}

.card-product .card-product-inner .quantity input {
    min-width: 35px;
    max-width: 50px;
    height: 35px;
    border-radius: 0;
    border-color: #dbdbdb !important;
    background: #fff;
    color: #555;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border-right: 0;
    border-left: 0;
}

.subtitle-img img {
    max-height: 25px;
    margin-bottom: 3px;
}

header.desktop .mega-menu .nav-link{
    margin-top:5px;
    display: flex;
    height: 100%;
}

.single-menu-container .single-menu li .subtitle-img{
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    display: block;
    color: #fff;
    transition: all 0.2s ease-in-out 0s;
    font-size: 16px;
}

.single-menu-container .single-menu li{
    text-align: center;
}

.single-menu-container .single-menu li .sub-single-item{
    padding: 0 15px;
}

/* 404 Sayfası */

/* .e404-body{background: repeating-linear-gradient(45deg,transparent, transparent 10px,#f8f8f8 10px, #f8f8f8 20px),linear-gradient(to bottom,#fff, #fff);} */

.e404-btn{
    background: #ffffff;
    border-radius: 45px;
    color: #212121;
    padding: 20px 50px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    -moz-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    text-decoration: none;
}

.e404-btn:hover{
    color:var(--main-color);
    -moz-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
}

/* 404 Sayfası - Tip 1 */

.e404-content .e404-logo img{
    max-height: 100px;
    border: none !important;
}

.e404-page-type-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-1 .e404-pic {
    height: 200px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-1 .e404-title{
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 2rem;
    margin: 30px 0px 0px 0px;
}

.e404-description{
    color: #808080;
    font-size: 1rem;
    margin: 5px;
    text-align: center;
    font-weight: 300;
}
    
/* İki Bölümlü 404 Sayfası - Tip 2*/

.e404-page-type-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-2 .e404-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    padding: 0 10%;
    border-top: 0;
    border-left: 0;
}

.e404-page-type-2 .e404-pic{
    height: 400px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-2 .e404-title{
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 2rem;
    margin: 30px 0px 0px 0px;
}

/* Mobil Uygulama İkonları  */

footer .mobile-app-title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

footer .mobile-app img{
    max-height: 40px;
}

/* Müşteri Etkileşim Butonları */

.product-customer-actions{
    padding: 10px 0;
    background: #fff;
}

.product-customer-actions .action .button i {
    font-size: 15px;
    margin-right: 10px;
}

.product-customer-actions .action:first-child {
    border-left: 0;
}
.product-customer-actions .action {
    border-right: 0;
}

/* Havale İndirimi */

.product-transfer-discount{
    background: #f2f2f2;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border-left: 5px solid var(--main-color);
    font-size:14px;
    color:#7a7a7a;
}

/* E-Bülten */

.newsletter-content .newsletter-title{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
    
.newsletter-input{
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.newsletter-form .btn-submit{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.newsletter-form{
    position: relative;
    width: 100%;
}

/* SMS Bülteni */

.sms-newsletter-content .newsletter-title{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
    
.sms-newsletter-input{
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.sms-newsletter-form .btn-submit{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.sms-newsletter-form{
    position: relative;
    width: 100%;
}

/* Footer Social Media*/

footer .social-media .social-media-title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

footer .social-media a{
    color: #000;
    font-size: 20px;
    margin-right: 20px;
}

footer .social-media a:last-child{
    margin-right:0;
}


/* Buttons */


.card-product .card-product-inner .free-cargo-badge {
    position: absolute;
    left: 10px;
    background: #009688;
}

.card-product .card-product-inner .buttons .btn-cart,
.modal-content .buttons .btn-cart{
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
}

.card-product .card-product-inner .buttons .btn-cart i,
.modal-content .buttons .btn-cart i{
    margin-right: 7px;
}

.card-product .card-product-inner .buttons .btn-cart:hover,
.modal-content .buttons .btn-cart:hover{
    background: var(--add-cart-list-bg-hover);
    border-color: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover) !important;
}

.card-product .down-to-top .btn-cart{
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
    font-size: 13px;
    display: none;
}

.card-product .down-to-top .btn-cart:hover{
    background: var(--add-cart-list-bg-hover);
    border-color: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover) !important;
}

.product-buttons .btn-cart{
    background: var(--add-cart-detail-bg);
    border-color: var(--add-cart-detail-bg);
    color: var(--add-cart-detail);
    transition: all var(--transition-time);
}

.product-buttons .btn-cart:hover{
    background: var(--add-cart-detail-bg-hover);
    border-color: var(--add-cart-detail-bg-hover);
    color: var(--add-cart-detail-hover);
}

.product-buttons .btn-fast-buy{
    background: var(--buy-now-bg);
    border-color: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
}

.product-buttons .btn-fast-buy:hover{
    background: var(--buy-now-bg-hover);
    border-color: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}


.payment-final-buttons-1 .btn-complete{
    background: var(--complete-payment-bg);
    border-color: var(--complete-payment-bg);
    color: var(--complete-payment);
    transition: all var(--transition-time);
}

.payment-final-buttons-1 .btn-complete:hover{
    background: var(--complete-payment-bg-hover);
    border-color: var(--complete-payment-bg-hover);
    color: var(--complete-payment-hover);
}
.payment-shipping-info{
    display:none;
}

.product-favourite-kart{
    display: inline-block;
    position: absolute;
    right: 5px;
    z-index: 2;
}

.product-favourite-kart a{
    font-size: 20px;
}
/* Header  */

header.desktop .header-bar .bar-link .icon{
    position:relative;
    transition: all var(--transition-time);
    margin-bottom: 5px;
}

header.desktop .header-bar .bar-link .name{
    transition: all var(--transition-time);
    font-size: 13px;
}

header.desktop .header-bar .bar-link:hover .icon,
header.desktop .header-bar .bar-link:hover .name{
    color: var(--main-color2);
}

header.desktop .header-bar .bar-user .link a:hover .name{
    color: var(--main-color2) !important;    
}

header.desktop .header-bar .bar-link{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222 !important;
    flex-direction: column;
    position: relative;
    line-height: normal;
    font-weight: 400;
    transition: all var(--transition-time);
    margin-right: 20px;
}

header.desktop .header-bar .bar-link a{
    color: #222;
}

header.desktop .header-bar .bar-user .link{
    display: flex;
    flex-direction: row;
}

header.desktop .header-bar .bar-link i{
    font-size: 15px;
}

header.desktop .header-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

header.desktop .header-bar .bar-cart .icon .count {
    position: absolute;
    right: -10px;
    top: -10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color2);
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
}


/* Category Page */
.product-view-select{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center;
}


/* Card Product */
.card-product .it-over {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgb(255 255 255 / 90%);
    color: #000;
    border: 1px solid #000;
    text-align: center;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-product .carousel-control-next i, 
.card-product .carousel-control-prev i{
    padding: 5px;
    background: #fff;
    font-size: 18px;
    color:#000;
}
.card-product .buttons-wrapper.right-to-left {
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: 0px;
    right: -30px;
    transition: all 0.4s;
    background: #fff;
    z-index: 9;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}

.card-product .right-to-left .button-group{
    background: transparent;
    padding: 7px;
}

.card-product .right-to-left .cart-group{
    display: flex;
    flex-direction: column;
}

.card-product .right-to-left .cart-group a{
    padding: 0;
    margin: 5px 0;
}

.card-product .right-to-left .cart-group a i{
    font-size: 17px;
    transition: all var(--transition-time);
}

.card-product .right-to-left .cart-group a:hover i{
    color: var(--main-color);
}

.card-product:hover .right-to-left{
    opacity:1;
    right: 0px;
    transition: all var(--transition-time);
}

.card-product .buttons-wrapper.down-to-top{
    position: absolute;
    overflow: hidden;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%,0%,0);
    z-index: -1;
}
.card-product .down-to-top .button-group{
    background: transparent;
    padding: 7px;
}
.card-product .btn-cart{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-product:hover .down-to-top{
    position: absolute;
    overflow: hidden;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%,-100%,0);
    transition:all .4s;
    z-index: 999;
}


.card-product:hover .down-to-top .button-group{
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    transition:all .4s;
    margin: 0 ;
    padding:3px 0;
}


/* Product Detail */
.product-carousel-mobile{
    display: none;
}
.video-play{
    position: relative;
}
.video-play i{
    position: absolute;
    bottom: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 100%;
    line-height: 28px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-indent:1px;
}

.cateogory-image img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.home-headline .p-g-mod-t-44 .col-list-p-v-1{
    padding-top:0 !important;
}

.show-category{
    padding: 10px 25px 10px 25px;
    background: var(--main-color3) !important;
}
.show-category .p-g-mod-header.p-g-mod-header-p-0,
.butik-story .p-g-mod-header.p-g-mod-header-p-0{
    display: flex;
    flex-direction: column;
}
.blogs-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info{
    align-items: flex-start;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info,
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button{
    align-items: center;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title{
    font-size: 20px;
    font-weight: 600;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod{
    color:var(--main-color2);
    font-weight: 500;
}

.five-banners .banner-item .title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding-top: 5px;
    background: #fff;
}

.five-banners .banner-item .description{
    font-size:13px;
    font-weight: 400;
    text-align: center;
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    
    .category-filter-order-desktop{
        display: none;
    }
    
    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav{
        height: auto;
    }
    
    .product-profile-1 .product-quantity{
        margin-right: 10px;
    }
    
    .product-badges .p-badge {
        height: 55px;
        flex: auto;
    }
    
    .product-buttons .btn-fast-buy {
        flex: 1;
    }
    
    .product-buttons .btn-cart{
        flex:1;
        margin-left:0;
    }
    
    .product-buttons .btn-wp {
        width: 100%;
    }
    
    .card-product .right-to-left{
        display: none !important;
    }
    
    .product-view-select{
        display: none;
    }
    
    .pattern-group .p-g-mod-t-26 .p-g-mod-body .buttons .btn-secondary {
        width: auto;
        margin: 5px;
        border-radius: 3px;
    }
    
    .categories-body .p-g-mod-t-cat-filter {
        margin: 10px;
    }
    
    footer .bar .right-image {
        justify-content: center;
    }
    
    footer .bb .pr-5{
        padding-right: 10px !important;
    }
    
    footer .mobile-app{
        margin-bottom: 20px;
    }
    
    .product-carousel-desktop.normal{
        display: none;
    }
    .product-carousel-mobile{
        display: block;
    }
    
    .mobile-header-space { 
        display: block;
    }

    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }
    
    .stores .cards {
        display: block;
        text-align: center;
    }

    .stores .card {
        display: inline-block;
        border-right: none;
        margin: 0;
        max-width: 45%;
        height: 50px;
        border: 0
    }
    footer .bar p {
        text-align: center !important;
    }
    
    footer .bar .right-image {
        margin: 10px 0;
        text-align: center !important;
    }

    footer .logo-area {
        display: none;
    }
    
    footer .bb {
        border-top: 0;
        border-bottom: 0;
    }

    footer .info {
        padding-top: 0;
    }

    footer .info .title {
        text-align: center !important;
        color: #000;
        border: 1px solid #000;
        padding: 8px;
        position: relative;
    }

    footer .info .title::after {
        content: "+";
        right: 10px;
        top: 3px;
        bottom: 0;
        position: absolute;
        font-size: 20px;
        margin-bottom: 10px;
    }

    footer .info .fs {
        display: none;
        text-align: center !important;
        border: 1px solid #000;
        margin-bottom: 15px;
        color: #000 !important;
        padding: 10px;
    }

    footer .info ul {
        margin: 0;
    }

    footer .info ul li {
        color: #000 !important;
    }

    footer .info ul li a {
        color: #000;
    }

    footer .info ul li a:before {
        display: none;
    }

    footer .social-media {
        justify-content: center;
        margin: 10px 0;
    }

    footer .secure {
        text-align: center !important; 
        margin: 10px 0;
    }

}

@media(max-width: 400px){
    .show-category .card-product .card-product-inner .price-group .prices .list-price,
    .butik-story .card-product .card-product-inner .price-group .prices .list-price{
        height: 14px;
        line-height: 14px;
    }
    .show-category .card-product .card-product-inner .price-group .prices .sale-price,
    .butik-story .card-product .card-product-inner .price-group .prices .sale-price{
        line-height: 16px;
        font-size: 13px;
        font-weight: 600;
    }

}
/* Header Shopping Cart */

header.desktop .header-cart-hover .nav-link::after {
    display: none;
}

  
header.desktop .header-cart-hover {
    position: relative;
    display: flex;
}

header.desktop .header-cart-hover .dropdown-menu {
    border: 0;
    border-radius: 0;
    background-color: #fff;
    width: 300px;
    left: inherit;
    right: 0;
    top: 37px;
    position: absolute;
    border: 2px solid #ececec;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    margin-top:0 !important;
    padding-top:0 !important;
    padding-bottom: 0;
}

header.desktop .header-cart-hover .dropdown-menu .top-header{
    background: #f7f7f7;
    display: flex;
    justify-content: space-evenly;
    padding: 5px 0;
}

header.desktop .header-cart-hover .dropdown-menu .top-header .title{
    font-size: 14px;
    padding: 5px 0;
    font-weight: 500;
}   

header.desktop .header-cart-hover:hover .dropdown-menu, 
header.desktop .header-cart-hover .dropdown-menu:hover {
    display:block!important;
}
 
header.desktop .header-cart-hover .dropdown-menu ul.user-links {
    margin: 0;
    padding: 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 10px;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li:hover{
    background: #f7f7f7;
    
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li a {
    display: block;
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #ebebeb;
    padding: 5px 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li:last-child a{
    border-bottom: 0px;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li a i {
    margin-right: 5px;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links {
    margin: 0;
    padding: 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links li a {
    display: block;
    text-align: center;
    padding: 10px 5px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
}


header.desktop .header-cart-hover .dropdown-menu ul.auth-links li a i {
    margin-right: 10px;
}

header.desktop .header-cart-hover .btn-remove{
    background: #dedede;
    border: none;
    color: #000;
    font-size: 12px;
    width: 25px;
    height: 25px;
    border-radius: 20px;
    display: flex;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}


.header-cart-summary-1 {
        
}

.header-cart-summary-1 .table th {
    font-size: 12px !important;
    font-weight: 500;
        
}
        
.header-cart-summary-1 .buttons {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
}

.header-cart-summary-1 .buttons .btn {
    font-size: 12px !important;
    padding: 5px 3px !important;
    margin: 5px;
    background: var(--add-cart-list-bg);
    color: var(--add-cart-list);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn:hover {
    background: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 {
    background: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn-color-2:hover{
    background: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 i{
    font-size: 8px;
    padding-left: 3px;
}


.ajax-shopping-cart {
    padding: 15px;
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.ajax-cart-empty{
    font-size: 13px !important;
    text-align: center;
    padding: 20px 0;
}

.ajax-shopping-cart .product {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    padding-top: 10px;
}

.ajax-shopping-cart .product:last-child{
    display: flex;
    margin-bottom: 10px;
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.ajax-shopping-cart .product .image {
    flex: 2;
}

.ajax-shopping-cart .product .price {
    flex: 2;
    font-size: 13px;
    text-align: right;
}

.ajax-shopping-cart .product .info {
    flex: 3;
    text-align:right;
}

.ajax-shopping-cart .product .info .name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

@media (max-width: 991px){
	.product-profile-1 .carousel .carousel-indicators li {
    	max-width: 50px;
	}
}

@media (max-width: 991px){
    .product-profile-1 h1.title {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .product-profile-1 .carousel .carousel-indicators{
        overflow: unset !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 767px) {
   /* .product-profile-1 .carousel .carousel-indicators{
        overflow: unset !important;
        max-height: unset !important;
    } */

    .product-profile-1 .carousel .carousel-indicators li {
        max-width: 50px;
    }
}


.p-g-mod.p-g-mod-t-39 {
    margin-bottom: 10px;
    margin-top: -10px;
    border: 0 !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-header {
    height: 35px !important;
    padding: 10px !important;
    color: #333;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 14px !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body:not(.p-g-mod-body-p-0) {
    padding: 0 !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body input {
    padding: 0.275rem 0.7rem !important;
    height: 35px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body .btn-secondary {
    font-size: 13px;
    font-weight: 500;
    background: #818181;
    border-color: #818181;
}

.product-carousel-desktop.normal .carousel-item a img {
    width: 100%;
}

@media(max-width: 991px){
    .ppc-ctype-2 .row:first-of-type,
    .ppc-ctype-3 .row:first-of-type {
        flex-direction: column-reverse;
    }
    
}

.category-short-description {
    font-size: 15px;
} 

@media(max-width: 991px){
    .category-short-description {
        font-size: 13px;
    } 
}
    .snow-effect {
    position:fixed !important;
    height:100%;
    width:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:999999;
    pointer-events:none;
    background-image: 
      url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-53284798-sw500sh500.webp"),
      url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-44118424-sw300sh300.webp"),
      url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-66650421-sw400sh400.webp");
    background-size: 200px;
    opacity: .9;
    font-family: helvetica, arial;
    -webkit-animation: snow 20s linear infinite;
    -moz-animation: snow 20s linear infinite;
    -ms-animation: snow 20s linear infinite;
    animation: snow 12s linear infinite;
  }

  /* ------------------Snow Kar Effecti Kayframess-------------*/
  
  /* Animation */
  
  @keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-moz-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-webkit-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-ms-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }

/* ============================================================
   MODERN B2B ÜRÜN KARTI - STOKDEPOM
   ============================================================ */

/* --- CSS DEĞİŞKENLERİ --- */
:root {
    --card-bg: #ffffff;
    --card-border: #f1f5f9;
    --card-radius: 16px;
    --card-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    --card-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-primary: #7c3aed;
    --accent-primary-light: #ede9fe;
    --accent-success: #10b981;
    --accent-success-light: #d1fae5;
    --accent-warning: #f59e0b;
    --accent-warning-light: #fef3c7;
    --accent-danger: #ef4444;
    --accent-danger-light: #fee2e2;
}

/* --- ÜRÜN KARTI KONTEYNER --- */
.sd-product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--card-transition);
}

.sd-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-primary-light);
}

/* --- GÖRSEL ALANI --- */
.sd-card-image {
    position: relative;
    width: 100%;
    padding-top: 110%;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

.sd-card-image .sd-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.sd-card-image .sd-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sd-product-card:hover .sd-img-main {
    transform: scale(1.08);
}

.sd-product-card:hover .sd-img-hover {
    opacity: 1;
}

/* --- ETİKETLER (Badges) --- */
.sd-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sd-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sd-badge-new {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #a855f7 100%);
    color: #fff;
}

.sd-badge-sale {
    background: linear-gradient(135deg, var(--accent-danger) 0%, #f97316 100%);
    color: #fff;
}

.sd-badge-bestseller {
    background: linear-gradient(135deg, var(--accent-warning) 0%, #fbbf24 100%);
    color: #78350f;
}

.sd-badge-stock-low {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
}

/* --- TÜKENDİ OVERLAY --- */
.sd-sold-out {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
}

/* --- AKSİYON BUTONLARI (Sağ üst) --- */
/* .sd-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    z-index: 10;
} */
.sd-actions {
    display: flex;
    transform: translateX(15px);
    transition: all 0.3s ease;
}

.sd-product-card:hover .sd-actions {
    opacity: 1;
    transform: translateX(0);
}

.sd-action-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.sd-action-btn:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: scale(1.1);
}

.sd-action-btn.is-favorited {
    color: var(--accent-danger);
}

.sd-action-btn.is-favorited:hover {
    background: var(--accent-danger);
    color: #fff;
}

/* --- KART İÇERİK ALANI --- */
.sd-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

/* --- ÜRÜN BAŞLIĞI --- */
.sd-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s ease;
    min-height: 42px;
}

.sd-card-title:hover {
    color: var(--accent-primary);
}

/* --- FİYAT VE KÂR ALANI --- */
.sd-price-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--card-border);
}

.sd-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sd-price-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sd-price-value {
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.sd-price-value small {
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
}

.sd-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* --- KÂR ETİKETİ --- */
.sd-profit-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 1px solid #fbcfe8;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #be185d;
    position: relative;
    cursor: help;
}

.sd-profit-badge i {
    font-size: 11px;
}

/* Tooltip */
.sd-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: var(--text-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 20;
}

.sd-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}

.sd-profit-badge:hover .sd-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- STOK DURUMU --- */
.sd-stock-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sd-stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-stock-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.sd-stock-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sd-stock-status.status-safe { color: var(--accent-success); }
.sd-stock-status.status-warning { color: var(--accent-warning); }
.sd-stock-status.status-critical { color: var(--accent-danger); }

/* Progress Bar */
.sd-stock-bar {
    width: 100%;
    height: 5px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.sd-stock-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-stock-fill.fill-safe { 
    background: linear-gradient(90deg, var(--accent-success) 0%, #34d399 100%);
    width: 85%;
}

.sd-stock-fill.fill-warning { 
    background: linear-gradient(90deg, var(--accent-warning) 0%, #fbbf24 100%);
    width: 40%;
}

.sd-stock-fill.fill-critical { 
    background: linear-gradient(90deg, var(--accent-danger) 0%, #f87171 100%);
    width: 15%;
}

/* --- KARGO BİLGİSİ --- */
.sd-shipping-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    margin-top: auto;
    border-top: 1px solid var(--card-border);
}

.sd-shipping-info i {
    color: var(--accent-primary);
    font-size: 14px;
}

.sd-shipping-info span {
    font-size: 11px;
    color: var(--text-secondary);
}

.sd-shipping-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- HIZLI AKSİYON BUTONU (Alt kısım) --- */
.sd-card-footer {
    padding: 0 16px 16px;
}

.sd-quick-add {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #8b5cf6 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
}

.sd-product-card:hover .sd-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.sd-quick-add:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(124, 58, 237, 0.4);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .sd-product-card:hover {
        transform: none;
    }
    
    .sd-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    .sd-quick-add {
        opacity: 1;
        transform: translateY(0);
    }
    
    .sd-card-body {
        padding: 12px;
    }
    
    .sd-price-value {
        font-size: 18px;
    }
    
    .sd-card-title {
        font-size: 13px;
        min-height: 39px;
    }
}

/* --- TOAST BİLDİRİMLERİ --- */
#sd-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sd-toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: sdSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sd-toast-success {
    background: linear-gradient(135deg, var(--accent-success) 0%, #059669 100%);
}

.sd-toast-error {
    background: linear-gradient(135deg, var(--accent-danger) 0%, #dc2626 100%);
}

.sd-toast-info {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #6366f1 100%);
}

@keyframes sdSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sdSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* --- MODAL STOKDEPOM --- */
.sd-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.sd-modal-overlay.is-open {
    display: flex;
}

.sd-modal-box {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    animation: sdModalIn 0.3s ease;
}

@keyframes sdModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sd-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.sd-modal-close:hover {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
}

.sd-modal-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.sd-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sd-modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sd-modal-btn {
    padding: 12px 32px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-modal-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* ============================================================
   LİSTE GÖRÜNÜMÜ KARTI
   ============================================================ */

.sd-list-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: var(--card-transition);
}

.sd-list-card:hover {
    box-shadow: var(--card-shadow);
    border-color: var(--accent-primary-light);
}

.sd-list-card-link {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 16px;
    text-decoration: none !important;
}

/* Liste Görsel Alanı */
.sd-list-image {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}

.sd-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-list-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--accent-success);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Liste Bilgi Alanı */
.sd-list-info {
    flex: 1;
    min-width: 0;
}

.sd-list-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-list-card:hover .sd-list-title {
    color: var(--accent-primary);
}

.sd-list-rating {
    margin-bottom: 6px;
}

.sd-list-stock {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sd-stock-dot.status-safe { background: var(--accent-success); }
.sd-stock-dot.status-warning { background: var(--accent-warning); }
.sd-stock-dot.status-critical { background: var(--accent-danger); }

.sd-stock-text {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Liste Fiyat Alanı */
.sd-list-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 110px;
}

.sd-list-price-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.sd-list-price-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-primary);
}

.sd-list-price-value small {
    font-size: 12px;
    font-weight: 600;
}

.sd-list-old-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.sd-list-discount {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.sd-list-profit {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: #be185d;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* Mobil Uyum */
@media (max-width: 576px) {
    .sd-list-card-link {
        flex-wrap: wrap;
    }
    
    .sd-list-image {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }
    
    .sd-list-price {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid var(--card-border);
    }
}