﻿/* ═══════════════════════════════════════════════════════════════════
   SHUTTLE TEMA — ÜRÜN KARTI v3
   Dosya  : assets/style.css sonuna ekleyin (veya ayrı dosya olarak)
   Not    : CSS değişken YOK — tüm değerler hardcode
            Mevcut .card-product kurallarıyla çakışmaz, yeni .cp-*
            prefix'li kurallar eklenir
   ═══════════════════════════════════════════════════════════════════ */


/* ── KART HOVER: Yukarı kalk + gölge (Trendyol stili) ─────────────── */
.card-product {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}


/* ══════════════════════════════════════════════════════════════════
   GÖRSEL ALANI
   ══════════════════════════════════════════════════════════════════ */
.cp-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
}

/* Görsel zoom hover */
.cp-image-wrapper .image img,
.cp-image-wrapper .image .lazy {
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
}
.card-product:hover .cp-image-wrapper .image img,
.card-product:hover .cp-image-wrapper .image .lazy {
    transform: scale(1.05);
}

.cp-img-link {
    display: block;
}

.cp-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* ── FAVORİ BUTONU — sağ üst, her zaman görünür ─────────────────────── */
.cp-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}
.cp-fav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.18s, box-shadow 0.18s;
}
.cp-fav a:hover,
.cp-fav a.active {
    color: #e53935;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
}


/* ── HOVER OVERLAY — sepete ekle + incele ─────────────────────────── */
.cp-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 9;
    pointer-events: none;
}
.card-product:hover .cp-hover-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cp-overlay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.14s ease, opacity 0.14s ease;
    white-space: nowrap;
    border: none;
    letter-spacing: 0.2px;
}
.cp-overlay-btn i {
    font-size: 11px;
}

.cp-overlay-btn--cart {
    background: #1c7ad2;
    color: #fff;
}
.cp-overlay-btn--cart:hover {
    background: #1568b8;
    color: #fff;
    transform: scale(1.02);
}

.cp-overlay-btn--examine {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
}
.cp-overlay-btn--examine:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
    transform: scale(1.02);
}

.cp-overlay-btn--disabled {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: not-allowed;
    pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════════
   BADGE ŞERİDİ
   ══════════════════════════════════════════════════════════════════ */
.cp-badge-strip {
    min-height: 30px;
    padding: 5px 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Tek badge — statik */
.cp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.cp-badge i {
    font-size: 10px;
}

/* Badge renkleri */
.cp-badge--coksatan  { background: #ff7f46; color: #fff; }
.cp-badge--flash     { background: #e53935; color: #fff; }
.cp-badge--firsat    { background: #0d9969; color: #fff; }
.cp-badge--hediye    { background: #7c3aed; color: #fff; }
.cp-badge--kampanya  { background: #1c7ad2; color: #fff; }
.cp-badge--kargo     { background: #00897b; color: #fff; }
.cp-badge--genel     { background: #546e7a; color: #fff; }

/* Çoklu badge — rotate animasyonu */
.cp-badge-rotate {
    position: relative;
    height: 24px;
    width: 100%;
}
.cp-badge-rotate .cp-badge {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: cpBadgeRotate 7.5s infinite;
}

@keyframes cpBadgeRotate {
    0%         { opacity: 0; transform: translateY(6px); }
    8%         { opacity: 1; transform: translateY(0); }
    /* görünür kal: 8% → (100/N - 8)% — JS'siz, CSS ile genel formül */
    /* Her badge kendi delay'i ile başlar, 2.5sn görünür */
    38%        { opacity: 1; transform: translateY(0); }
    46%        { opacity: 0; transform: translateY(-6px); }
    100%       { opacity: 0; transform: translateY(-6px); }
}


/* ══════════════════════════════════════════════════════════════════
   ÜRÜN BİLGİ ALANI
   ══════════════════════════════════════════════════════════════════ */
.cp-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 8px;
    text-decoration: none;
    color: inherit;
    flex: 1;
}
.cp-body:hover {
    color: inherit;
    text-decoration: none;
}

.cp-brand {
    font-size: 10px;
    font-weight: 700;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1;
}

.cp-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    margin: 0;
}

.cp-meta {
    font-size: 10px;
    color: #b0b0b0;
    line-height: 1.3;
}


/* ── DEĞERLENDİRME YILDIZLARI ─────────────────────────────────────── */
.cp-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}
.cp-star {
    font-size: 11px;
}
.cp-star--full  { color: #f59e0b; }
.cp-star--half  { color: #f59e0b; }
.cp-star--empty { color: #d1d5db; }
.cp-rating-count {
    font-size: 10px;
    color: #9ca3af;
    margin-left: 3px;
}


/* ══════════════════════════════════════════════════════════════════
   FİYAT BLOĞU — asla iç içe geçmez
   ══════════════════════════════════════════════════════════════════ */
.cp-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 5px;
}

/* A: eski fiyat */
.cp-price-old {
    font-size: 11px;
    color: #b0b0b0;
    text-decoration: line-through;
    line-height: 1.3;
}

/* B: rozet + güncel fiyat — tek satır, asla kırılmaz */
.cp-price-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
}

.cp-price-pct {
    display: inline-flex;
    align-items: center;
    background: #ff7f46;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.5;
}

.cp-price-now {
    font-size: 17px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.5px;
    line-height: 1.2;
    flex-shrink: 0;
    white-space: nowrap;
}
.cp-price-now.cp-strike {
    font-size: 13px;
    text-decoration: line-through;
    color: #b0b0b0;
    font-weight: 500;
}

/* C: Fiyatı Düştü */
.cp-price-drop {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fdecea;
    color: #e53935;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    border: 1px solid #fca5a5;
    white-space: nowrap;
    margin-top: 2px;
}
.cp-price-drop i {
    font-size: 9px;
}


/* ══════════════════════════════════════════════════════════════════
   STOK BARI + KAÇ KİŞİ İNCELİYOR
   ══════════════════════════════════════════════════════════════════ */
.cp-stock {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-bottom: 2px;
}

.cp-stock-bar {
    height: 3px;
    background: #e9ecef;
    border-radius: 99px;
    overflow: hidden;
}

.cp-stock-fill {
    display: block;
    height: 100%;
    border-radius: 99px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stok-ok       .cp-stock-fill { background: linear-gradient(90deg, #0d9969, #34d399); }
.stok-low      .cp-stock-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.stok-critical .cp-stock-fill { background: linear-gradient(90deg, #e53935, #ff7043); }
.stok-out      .cp-stock-fill { background: #d1d5db; }

.cp-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.cp-stock-label {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}
.stok-ok       .cp-stock-label { color: #0d9969; }
.stok-low      .cp-stock-label { color: #d97706; }
.stok-critical .cp-stock-label { color: #e53935; }
.stok-out      .cp-stock-label { color: #9ca3af; }

.cp-viewer {
    font-size: 10px;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}
.cp-viewer i {
    font-size: 9px;
    margin-right: 2px;
}


/* ── BİRİM ────────────────────────────────────────────────────────── */
.cp-unit {
    font-size: 10px;
    color: #9ca3af;
    padding: 3px 12px 0;
}


/* ══════════════════════════════════════════════════════════════════
   STOK TÜKENEN KART — görsel soluklaşır
   class="card-product stok-out-card" ile kullanın
   ══════════════════════════════════════════════════════════════════ */
.card-product.stok-out-card .cp-image-wrapper .image img {
    filter: grayscale(30%);
    opacity: 0.85;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px altı
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .cp-title      { font-size: 12px; }
    .cp-price-now  { font-size: 15px; }
    .cp-overlay-btn { font-size: 11px; padding: 7px 12px; }
    .card-product .buttons .btn-cart { font-size: 12px; }
}

/* ✅ Mobilde hover ile açılmasın, sadece .tilbehead19-is-open ile açılsın */
@media (max-width: 991.98px) {
  .tilbehead19-action-item:hover .tilbehead19-action-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(4px) !important;
    pointer-events: none !important;
  }

  .tilbehead19-action-item.tilbehead19-is-open .tilbehead19-action-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ✅ Desktop'ta hover çalışsın */
@media (min-width: 992px) {
  .tilbehead19-action-item:hover .tilbehead19-action-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================
   TILBEHEAD19 SCOPE RESET
========================= */
.tilbehead19-header,
.tilbehead19-header * ,
.tilbehead19-header *::before,
.tilbehead19-header *::after{
  box-sizing: border-box;
}

.tilbehead19-notification-btn {
    border-color: #fff;
    width: 40px;
    height: 40px;
    background: #4dc761 !important;
    border-radius: 50px !important;
}

/* Header içindeki elementlerin margin/padding reseti */
.tilbehead19-header *{
  margin: 0;
  padding: 0;
}

/* Body'yi elleme. Header'a kendi metin rengini ve line-height'ını ver */
.tilbehead19-header{
  color: #111827;
  line-height: 1.5;
}

/* Link reset sadece header içinde */
.tilbehead19-header a{
  text-decoration: none;
  color: inherit;
}

/* Button reset sadece header içinde */
.tilbehead19-header button{
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Img reset sadece header içinde */
.tilbehead19-header img{
  max-width: 100%;
  height: auto;
  margin-left:10px;
}




.easy-autocomplete input {
    border-color: #ccc;
    border-radius: 4px;
    border-style: solid;
    border-width: 0px;
    box-shadow: none;
    color: #555;
    float: none;
    padding: 6px 12px;
}

/* ========================================
   HEADER MAIN (vNext – Trendyol-like, elegant + pro)
   Scope: header only (tokens override locally)
======================================== */
.tilbehead19-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #FFFFFF;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 10px 20px -10px #cecece;
}

.tilbehead19-header.tilbehead19-scrolled {
  box-shadow: 0 6px 16px rgba(17,24,39,0.10);
}


/* ========================================
   TOP BAR (vNext – clean, non-distracting)
======================================== */
.tilbehead19-top-bar {
    background: #ffffff;
    color: #374151;
    height: 30px;

}

.tilbehead19-notification-btn > i.fa-bell {
    display: inline-block;
    transform-origin: top center;
    animation: bellAutoRing 4s ease-in-out infinite;
    will-change: transform;
	   color:#fff;
	   font-size:22px;
}

/* 4 saniyede bir kısa sallanma */
@keyframes bellAutoRing {
    0%, 85%, 100% { transform: rotate(0); }

    88%  { transform: rotate(14deg); }
    90%  { transform: rotate(-12deg); }
    92%  { transform: rotate(8deg); }
    94%  { transform: rotate(-6deg); }
    96%  { transform: rotate(3deg); }
}


.tilbehead19-top-bar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #FFFFFF;
}

/* Left info */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.tilbehead19-nav-link-hot {
    color: #E53935 !important;
    background: #FEECEB !important;
    border-radius: 6px !important;
}

.tilbehead19-nav-link-hot:hover {
  background: #E53935 !important;
  color: #FFFFFF !important;
}

.tilbehead19-nav-link-hot i {
    font-size: 10px;
    margin-left: 3px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #374151;
}

.top-info-item i {
  font-size: 11px;
  color: #F27A1A;
}

/* Right links */
.tilbehead19-top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.tilbehead19-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: #374151;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}

.tilbehead19-top-link:hover {
  background: #F3F4F6;
  color: #111827;
}

.tilbehead19-top-divider {
  width: 1px;
  height: 12px;
  background: rgba(17, 24, 39, 0.08);
  margin: 0 4px;
}

/* WhatsApp highlight (kept) */
.tilbehead19-top-link.tilbehead19-whatsapp {
  color: #1FA855;
  font-weight: 600;
}

.tilbehead19-top-link.tilbehead19-whatsapp:hover {
  background: rgba(31,168,85,0.12);
  color: #1FA855;
}

/* Highlight CTA (e.g., toptan) */
.tilbehead19-top-link.tilbehead19-highlight {
    color: #374151;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .top-bar-left { display: none; }
  .tilbehead19-top-bar-right { justify-content: center; flex-wrap: wrap; gap: 6px; }
}
@media (max-width: 576px) {
  .tilbehead19-top-link span { display: none; }
  .tilbehead19-top-link { padding: 8px 10px; }
}


/* ========================================
   MAIN BAR
======================================== */
.tilbehead19-main-bar {
  height: 85px;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px 0px;
}

.tilbehead19-main-bar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 37px;
}

.tilbehead19-logo {
  display: flex;
  align-items: center;
  padding-right: 25px;
}

.tilbehead19-logo-img {
  height: 40px;        /* desktop */
  width: auto;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .tilbehead19-logo-img {
    height: 36px;
  }
}

/* Mobil */
@media (max-width: 768px) {
    .tilbehead19-logo-img {
        height: 32px;
        width: 130px;
    }
}


/* Location Button */
.location-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #F8FAFC;
  border-radius: 10px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.location-btn:hover {
  background: #F7F8F8;
}

.location-btn > i:first-child {
  font-size: 13px;
  color: #F27A1A;
}

.location-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.location-text span {
  font-size: 9px;
  color: #6B7280;
}

.location-text strong {
  font-size: 11px;
  color: #111827;
  font-weight: 500;
}

.location-btn > i:last-child {
  font-size: 10px;
  color: #6B7280;
}

/* ========================================
   SEARCH
======================================== */
.tilbehead19-search-wrapper {
  flex: 1;
  max-width: 700px;
  position: relative;
}

.tilbehead19-search-form {
  display: flex;
  align-items: stretch;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tilbehead19-search-form:focus-within {
  background: #ffffff;
  border-color: #F27A1A;
  box-shadow: 0 0 0 3px rgba(242,122,26,0.22);
}

/* Search Category */
.search-category {
  position: relative;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 44px;
  font-size: 13px;
  color: #374151;
  background: #F3F4F6;
  border-right: 1px solid #E5E7EB;
  transition: all 0.25s ease;
}

.category-btn:hover {
  background: #F3F4F6;
  color: #111827;
}

.category-btn i {
  font-size: 10px;
}

.category-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(17,24,39,0.14);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.search-category:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cat-option {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #374151;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.cat-option:hover {
  background: #F8FAFC;
  color: #111827;
}

.cat-option.tilbehead19-active {
  color: #F27A1A;
  font-weight: 500;
  background: rgba(37,99,235,0.10);
}

/* Search Input */
.tilbehead19-search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.tilbehead19-search-input {
  width: 100%;
  height: 44px;
  padding: 0 5px 0 16px;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  color: #111827;
  outline: none;
}
.tilbehead19-search-input:focus {
    background: #ffffff;
}
.tilbehead19-search-input:hover {
  background: #ffffff;
  color: #111827;

}
.tilbehead19-search-input::placeholder {
  color: #6B7280;
  
  
}

.search-clear {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.search-clear:hover {
  background: #F8FAFC; 
  color: #111827;
}

.tilbehead19-search-input:not(:placeholder-shown) + .search-clear {
  display: flex;
}

/* Search Button */
.tilbehead19-search-btn {
    width: 52px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f27a1a;
    font-size: 16px;
    transition: all 0.25s ease;


}

.tilbehead19-search-btn:hover {
  background: #f27a1a;
  color: #ffffff;
}

.tilbehead19-search-btn:active {
  background: #D65F0B;
}

/* Search Dropdown */
.tilbehead19-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(17,24,39,0.14);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.tilbehead19-search-wrapper:focus-within .tilbehead19-search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tilbehead19-search-section {
  margin-bottom: 20px;
}

.tilbehead19-search-section:last-child {
  margin-bottom: 0;
}

.tilbehead19-search-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tilbehead19-search-section-header span {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tilbehead19-clear-history {
  font-size: 12px;
  color: #F27A1A;
  transition: color 0.25s ease;
}

.tilbehead19-clear-history:hover {
  color: #E8680E;
}

/* Search History */
.tilbehead19-search-history {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tilbehead19-history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.tilbehead19-history-item:hover {
  background: #F8FAFC;
}

.tilbehead19-history-item i {
  font-size: 12px;
  color: #6B7280;
}

.tilbehead19-history-item span {
  font-size: 13px;
  color: #374151;
}

/* Search Popular */
.tilbehead19-search-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tilbehead19-popular-tag {
  padding: 6px 14px;
  background: #fff;
  border-radius: 9999px;
  font-size: 12px;
  color: #374151;
  transition: all 0.25s ease;
  border: 1px solid #E5E7EB;
}

.tilbehead19-popular-tag:hover {
 
  color: #F27A1A;
  border-color: #F27A1A;
}

/* Search Trends */
.search-trends {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.trend-item:hover {
  background: #F8FAFC;
}

.trend-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.trend-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trend-name {
  font-size: 13px;
  color: #111827;
  font-weight: 500;
}

.trend-price {
  font-size: 13px;
  color: #DC2626;
  font-weight: 600;
}

/* ========================================
   HEADER ACTIONS
======================================== */
.tilbehead19-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tilbehead19-action-item {
  position: relative;
}

.ui-reviews-header{
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
	}

.ui-reviews-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F27A1A;
}

.ui-qa-header-left h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F27A1A;

}

.tilbehead19-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.tilbehead19-action-btn:hover {
  background: #F8FAFC;
}

.tilbehead19-action-btn > i {
  font-size: 20px;
  color: #374151;
}

.tilbehead19-action-badge {
  position: absolute;
 top: -2px;
    left: 20px;
  min-width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
background: #4dc761;
color: #FFFFFF;
font-size: 10px;
font-weight: 600;
border-radius: 9999px;
padding: 0 5px;
}
.tilbehead19-cart-badge {
background: #4dc761;
}
.tilbehead19-action-text {
display: flex;
flex-direction: column;
text-align: left;
line-height: 1.2;
}
.tilbehead19-action-text span {
font-size: 10px;
color: #6B7280;
}
.tilbehead19-action-text strong {
font-size: 12px;
color: #111827;
font-weight: 400;
}
.tilbehead19-action-dropdown {
    position: absolute;
    display: block;
    top: calc(100% + 8px);
    right: 0;          /* sadece right */
    left: auto;        /* left kaldır */
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(17,24,39,0.14);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.tilbehead19-action-item:hover .tilbehead19-action-dropdown,
.tilbehead19-action-item.tilbehead19-is-open .tilbehead19-action-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

/* 577–768px arası: dropdown ekran dışına taşmasın */
@media (max-width: 768px) {
    .tilbehead19-action-dropdown {
        min-width: 0;
        width: calc(100vw - 24px);
        max-width: 360px;
        right: 0;
        left: auto;
    }
}
/* Account Dropdown */
.tilbehead19-account-dropdown {
padding: 20px;
}
.tilbehead19-dropdown-header {
text-align: center;
margin-bottom: 16px;
}
.tilbehead19-dropdown-header span {
font-size: 16px;
font-weight: 600;
color: #111827;
}
.tilbehead19-dropdown-header p {
font-size: 13px;
color: #6B7280;
margin-top: 4px;
}
.tilbehead19-dropdown-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-bottom: 16px;
}
.tilbehead19-btn-login {
    padding: 10px;
    background: #F27A1A;
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid #F27A1A;
}
.tilbehead19-btn-login:hover {
background: #E8680E;
}
.tilbehead19-btn-login:active {
background: #D65F0B;
}
.tilbehead19-btn-register {
padding: 10px;
background: #F8FAFC;
color: #111827;
text-align: center;
border-radius: 10px;
font-size: 13px;
font-weight: 600;
transition: all 0.25s ease;
border: 1px solid rgba(17, 24, 39, 0.08);
}
.tilbehead19-btn-register:hover {
background: #F3F4F6;
border-color: #D1D5DB;
}
.tilbehead19-dropdown-divider {
height: 1px;
background: #E5E7EB;
margin: 16px 0;
}
.tilbehead19-dropdown-nav {
display: flex;
flex-direction: column;
}
.tilbehead19-dropdown-nav a {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 12px;
font-size: 13px;
color: #374151;
border-radius: 6px;
transition: all 0.25s ease;
}
.tilbehead19-dropdown-nav a:hover {
background: #F8FAFC;
color: #F27A1A;
}
.tilbehead19-dropdown-nav a i {
width: 18px;
text-align: center;
font-size: 14px;
}
/* Cart Dropdown */
.tilbehead19-cart-dropdown {
width: 380px;
}
.tilbehead19-cart-dropdown-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid #E5E7EB;
}
.tilbehead19-cart-dropdown-header span:first-child {
font-size: 15px;
font-weight: 600;
color: #111827;
}
.tilbehead19-cart-count {
font-size: 12px;
color: #6B7280;
}
.tilbehead19-cart-dropdown-items {
max-height: 280px;
overflow-y: auto;
padding: 12px 20px;
}
.tilbehead19-cart-dropdown-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid #E5E7EB;
}
.tilbehead19-cart-dropdown-item:last-child {
border-bottom: none;
}
.tilbehead19-cart-dropdown-item img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 6px;
border: 1px solid #E5E7EB;
}
.tilbehead19-cart-item-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}
.tilbehead19-cart-item-name {
font-size: 11px;
color: #111827;
font-weight: 500;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.tilbehead19-cart-item-variant {
font-size: 11px;
color: #6B7280;
}
.tilbehead19-cart-item-price {
font-size: 14px;
color: #DC2626;
font-weight: 600;
}
.tilbehead19-cart-item-remove {
padding: 6px;
color: #6B7280;
border-radius: 6px;
transition: all 0.25s ease;
}
.tilbehead19-cart-item-remove:hover {
background: #F8FAFC;
color: #DC2626;
}
.tilbehead19-cart-dropdown-footer {
padding: 16px 20px;
background: #fff;
border-radius: 0 0 14px 14px;
}
.tilbehead19-cart-subtotal {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
}
.tilbehead19-cart-subtotal span {
font-size: 14px;
color: #374151;
}
.tilbehead19-cart-subtotal strong {
font-size: 18px;
color: #111827;
}
.tilbehead19-cart-free-shipping {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
background: rgba(22,163,74,0.10);
border-radius: 10px;
margin-bottom: 20px;
}
.tilbehead19-cart-free-shipping i {
color: #16A34A;
font-size: 14px;
}
.tilbehead19-cart-free-shipping span {
font-size: 12px;
color: #16A34A;
}
.tilbehead19-cart-free-shipping strong {
color: #16A34A;
}
.tilbehead19-cart-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.tilbehead19-btn-view-cart {
padding: 12px;
text-align: center;
border-radius: 10px;
font-size: 13px;
font-weight: 600;

border-color: #111827;
color: #ffffff;
background: #111827;
}
.tilbehead19-btn-view-cart:hover {
    border: 1px solid #111827;
    color: #111827;
    background: #ffffff;
}

.tilbehead19-btn-checkout {
padding: 12px;
background: #F27A1A;
color: #ffffff;
text-align: center;
border-radius: 10px;
font-size: 13px;
font-weight: 600;
transition: all 0.25s ease;
border: 1px solid #f27a1a;
}
.tilbehead19-btn-checkout:hover {
background: #ffffff;
color:#f27a1a;
border: 1px solid #f27a1a;
}
.tilbehead19-btn-checkout:active {
background: #D65F0B;
}
/* Mobile Menu Button */
.tilbehead19-mobile-menu-btn {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 40px;
height: 40px;
padding: 8px;
}
.tilbehead19-mobile-menu-btn span {
display: block;
height: 2px;
background: #111827;
border-radius: 2px;
transition: all 0.25s ease;
}
/* ========================================
NAVIGATION BAR
======================================== */
.tilbehead19-nav-bar {
background: #FFFFFF;
border-bottom: 1px solid #E5E7EB;
display: flex;
align-items: center;
justify-content: space-between;
}
.tilbehead19-nav-bar-container {
max-width: 1440px;
margin: 0 auto;
padding: 0 24px;
height: 52px;
display: flex;
align-items: center;
gap: 10px;
}
/* Categories Button */
.nav-categories {
position: relative;
}
.categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F27A1A;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.categories-btn:hover {
background: #E8680E;
}
.categories-btn:active {
background: #D65F0B;
}
.categories-btn i:last-child {
font-size: 10px;
margin-left: 4px;
}
/* Mega Menu */
.mega-menu {
position: absolute;
top: calc(100% + 8px);
left: 0;
display: flex;
background: #FFFFFF;
border-radius: 14px;
box-shadow: 0 16px 40px rgba(17,24,39,0.14);
min-width: 1000px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.25s ease;
z-index: 100;
border: 1px solid #E5E7EB;
}
.nav-categories:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.mega-menu-sidebar {
width: 240px;
padding: 16px;

border-radius: 14px 0 0 14px;
}
.mega-category {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 14px;
font-size: 13px;
color: #374151;
border-radius: 10px;
transition: all 0.25s ease;
}
.mega-category:hover,
.mega-category.tilbehead19-active {
background: #FFFFFF;
color: #F27A1A;
}
.mega-category i:first-child {
width: 20px;
text-align: center;
font-size: 14px;
}
.mega-category span {
flex: 1;
}
.mega-category i:last-child {
font-size: 10px;
opacity: 0;
transition: opacity 0.25s ease;
}
.mega-category:hover i:last-child,
.mega-category.tilbehead19-active i:last-child {
opacity: 1;
}
.mega-menu-content {
flex: 1;
padding: 24px;
}
.mega-panel {
display: none;
grid-template-columns: repeat(3, 1fr) 200px;
gap: 24px;
}
.mega-panel.tilbehead19-active {
display: grid;
}
.mega-column h4 {
font-size: 14px;
font-weight: 600;
color: #111827;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 1px solid #E5E7EB;
}
.mega-column a {
display: block;
padding: 8px 0;
font-size: 13px;
color: #374151;
transition: color 0.25s ease;
}
.mega-column a:hover {
color: #F27A1A;
}
.mega-featured {
position: relative;
border-radius: 10px;
overflow: hidden;
border: 1px solid #E5E7EB;
}
.mega-featured img {
width: 100%;
height: 100%;
object-fit: cover;
}
.mega-featured-content {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 16px;
background: linear-gradient(to top, rgba(19,26,34,0.85), transparent);
color: #FFFFFF;
}
.mega-featured-tag {
display: inline-block;
padding: 4px 10px;
background: #F27A1A;
color: #111827;
border-radius: 9999px;
font-size: 11px;
font-weight: 600;
margin-bottom: 8px;
width: fit-content;
}
.mega-featured h5 {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
}
.mega-featured-cta {
font-size: 12px;
display: flex;
align-items: center;
gap: 6px;
}
.mega-featured-cta i {
font-size: 10px;
}
/* Nav Menu */
.tilbehead19-nav-menu {
display: flex;
align-items: center;
gap: 4px;
list-style: none;
flex: 1;
}
.tilbehead19-nav-menu li a {
    display: block;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    border-radius: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.tilbehead19-nav-menu li a:hover {
color: #E53935;
}
/* Nav Promo */
.nav-promo {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(220,38,38,0.10);
color: #DC2626;
border-radius: 10px;
font-size: 13px;
font-weight: 600;
transition: all 0.25s ease;
}
.nav-promo:hover {
background: #DC2626;
color: #FFFFFF;
}
.promo-badge {
padding: 2px 8px;
background: #DC2626;
color: #FFFFFF;
border-radius: 9999px;
font-size: 10px;
font-weight: 600;
}
.nav-promo:hover .promo-badge {
background: #FFFFFF;
color: #DC2626;
}

/* ========================================
   NAV QUICK (Kupon / Yeni Gelenler / Viral)
======================================== */
.nav-quick{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.nav-pill{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-pill i{
  font-size: 12px;
  color: #F27A1A;
}
.nav-pill:hover{
  background: #FFF1E7;
  border-color: #F27A1A;
  color: #111827;
}
.nav-pill:active{
  transform: translateY(1px);
}


@media (max-width: 768px){
  .tilbehead19-header.tilbehead19-scrolled .tilbehead19-main-bar{
    height: auto;
  }
}

/* ========================================
CATEGORY ICONS
======================================== */
.category-icons {
background: #FFFFFF;
padding: 16px 0;
border-bottom: 1px solid #E5E7EB;
}
.category-icons-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 24px;
position: relative;
display: flex;
align-items: center;
}
.category-scroll-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: #FFFFFF;
border: 1px solid rgba(17, 24, 39, 0.08);
border-radius: 9999px;
color: #374151;
box-shadow: 0 1px 2px rgba(0,0,0,0.06);
z-index: 10;
transition: all 0.25s ease;
}
.category-scroll-btn:hover {
background: #F27A1A;
border-color: #F27A1A;
color: #FFFFFF;
}
.scroll-left {
left: 8px;
}
.scroll-right {
right: 8px;
}
.category-icons-track {
display: flex;
gap: 16px;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
padding: 8px 48px;
}
.category-icons-track::-webkit-scrollbar {
display: none;
}
.category-icon-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
flex-shrink: 0;
transition: all 0.25s ease;
}
.category-icon-item:hover {
transform: translateY(-2px);
}
.category-icon-circle {
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(37,99,235,0.10);
border-radius: 9999px;
color: #2563EB;
font-size: 22px;
transition: all 0.25s ease;
}
.category-icon-item:hover .category-icon-circle {
background: #2563EB;
color: #FFFFFF;
}
.category-icon-circle.new {
background: #FEF5E7;
color: #F27A1A;
}
.category-icon-item:hover .category-icon-circle.new {
background: #F27A1A;
color: #FFFFFF;
}
.category-icon-item span {
font-size: 12px;
color: #374151;
font-weight: 500;
text-align: center;
white-space: nowrap;
}
/* ========================================
MOBILE MENU
======================================== */
.tilbehead19-mobile-menu-overlay {
position: fixed;
inset: 0;
background: rgba(19,26,34,0.7);
opacity: 0;
visibility: hidden;
z-index: 1100;
transition: all 0.25s ease;
}
.tilbehead19-mobile-menu-overlay.tilbehead19-active {
opacity: 1;
visibility: visible;
}
.tilbehead19-mobile-menu {
position: fixed;
top: 0;
left: 0;
width: 320px;
height: 100vh;
background: #FFFFFF;
z-index: 1200;
transform: translateX(-100%);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
overflow-y: auto;
}
.tilbehead19-mobile-menu.tilbehead19-active {
transform: translateX(0);
}
.tilbehead19-mobile-menu-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid #E5E7EB;
}
.tilbehead19-mobile-menu-close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 9999px;
color: #374151;
transition: all 0.25s ease;
}
.tilbehead19-mobile-menu-close:hover {
background: #F8FAFC;
}
.tilbehead19-mobile-menu-user {
display: flex;
align-items: center;
gap: 14px;
padding: 20px;
background: #F8FAFC;
}
.tilbehead19-mobile-user-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdecea;
    border-radius: 9999px;
    color: #f27a1a;
    font-size: 20px;
}
.tilbehead19-mobile-user-info {
display: flex;
flex-direction: column;
}
.tilbehead19-mobile-user-info span {
font-size: 12px;
color: #6B7280;
}
.tilbehead19-mobile-user-info a {
font-size: 14px;
font-weight: 600;
color: #f27a1a;
}
.tilbehead19-mobile-menu-search {
position: relative;
padding: 16px 20px;
}
.tilbehead19-mobile-menu-search input {
width: 100%;
padding: 12px 16px;
padding-right: 44px;
background: #F8FAFC;
border: 1px solid rgba(17, 24, 39, 0.08);
border-radius: 10px;
font-size: 14px;
outline: none;
transition: all 0.25s ease;
}
.tilbehead19-mobile-menu-search input:focus {
border-color: #F27A1A;
box-shadow: 0 0 0 3px rgba(242,122,26,0.22);
}
.tilbehead19-mobile-menu-search i {
position: absolute;
right: 34px;
top: 50%;
transform: translateY(-50%);
color: #6B7280;
}
.tilbehead19-mobile-menu-nav {
padding: 12px 8px;
}
.tilbehead19-mobile-nav-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 16px;
font-size: 14px;
color: #374151;
border-radius: 10px;
transition: all 0.25s ease;
}
.tilbehead19-mobile-nav-item:hover {
background: #F8FAFC;
color: #F27A1A;
}
.tilbehead19-mobile-nav-item i:first-child {
width: 20px;
text-align: center;
font-size: 16px;
}
.tilbehead19-mobile-nav-item span {
flex: 1;
}
.tilbehead19-mobile-nav-item i:last-child {
font-size: 12px;
color: #6B7280;
}
.mobile-nav-badge {
padding: 2px 8px;
background: #F27A1A;
color: #FFFFFF;
font-size: 10px;
font-weight: 600;
border-radius: 9999px;
}
.tilbehead19-mobile-menu-divider {
height: 1px;
background: #E5E7EB;
margin: 8px 20px;
}
.tilbehead19-mobile-menu-nav.tilbehead19-secondary .tilbehead19-mobile-nav-item {
color: #6B7280;
font-size: 13px;
}
.tilbehead19-mobile-menu-footer {
margin-top: auto;
padding: 20px;
border-top: 1px solid #E5E7EB;
}
.tilbehead19-mobile-whatsapp {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px;
background: #25D366;
color: #FFFFFF;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
transition: all 0.25s ease;
}
.tilbehead19-mobile-whatsapp:hover {
background: #1FA855;
}
.tilbehead19-mobile-whatsapp i {
font-size: 18px;
}
/* ========================================
FLOATING BUTTONS
======================================== */
.floating-buttons {
position: fixed;
bottom: 24px;
right: 24px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 900;
}
.floating-btn {
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 9999px;
font-size: 20px;
box-shadow: 0 6px 16px rgba(17,24,39,0.10);
transition: all 0.25s ease;
}
.whatsapp-float {
background: #25D366;
color: #FFFFFF;
}
.whatsapp-float:hover {
background: #1FA855;
transform: scale(1.1);
}
.scroll-top {
background: #F27A1A;
color: #FFFFFF;
border: none;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
}
.scroll-top.tilbehead19-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.scroll-top:hover {
background: #E8680E;
}
.scroll-top:active {
background: #D65F0B;
}
/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 1200px) {
.location-btn {
display: none;
}
.compare-action {
display: none;
}
.mega-menu {
min-width: 900px;
}
.mega-panel {
grid-template-columns: repeat(2, 1fr) 180px;
}
}
@media (max-width: 992px) {
.tilbehead19-top-bar {
display: none;
}
.tilbehead19-nav-bar {
display: none;
}
.category-icons {
display: none;
}
.search-category {
display: none;
}
.tilbehead19-action-text {
display: none;
}
.tilbehead19-mobile-menu-btn {
display: flex;
}
.tilbehead19-header-actions {
gap: 4px;
}
.tilbehead19-action-btn {
padding: 8px;
}
}
@media (max-width: 768px) {
.tilbehead19-search-dropdown {
position: absolute;

opacity: 0;
visibility: hidden;
transform: translateY(-8px);
box-shadow: none;
border: 1px solid rgba(17, 24, 39, 0.08);
transition: all 0.25s ease;
}
.tilbehead19-search-wrapper.tilbehead19-active .tilbehead19-search-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.tilbehead19-main-bar-container {
padding: 0 16px;
gap: 12px;
}
.tilbehead19-logo {
font-size: 22px;
}
.breadcrumb {
display:none;
}
.pdp-container {
margin-top: 15px;
}
.tilbehead19-search-wrapper{
  position: relative;
  display: block;
  flex: 1;
  max-width: none;
}
.tilbehead19-search-form {
border-radius: 8px;
}
.floating-buttons {
bottom: 16px;
right: 16px;
}
.floating-btn {
width: 48px;
height: 48px;
font-size: 18px;
}
.trend-name {
font-size: 10px;
color: #111827;
font-weight: 500;
}
/* Main bar düzeni */
.tilbehead19-main-bar {
height: auto;
padding: 0px 0 10px;
}
.tilbehead19-main-bar-container {
flex-wrap: wrap;
padding: 0 12px;
gap: 10px;
}
/* Hamburger menü görünür ve solda */
.tilbehead19-mobile-menu-btn {
display: flex;
order: 1;
}
/* Logo ortada değil, hamburger'dan sonra */
.tilbehead19-logo {
order: 2;
font-size: 20px;
margin-right: auto;
padding-right: 0px;
}
/* Konum butonu gizle */
.location-btn {
display: none;
}
/* Aksiyon butonları küçült */
.tilbehead19-header-actions .tilbehead19-action-btn {
padding: 6px;
}
.tilbehead19-header-actions .tilbehead19-action-btn > i {
font-size: 22px;
}
/* Action text gizle */
.tilbehead19-action-text {
display: none;
}
/* Arama - Alt satıra geç, full genişlik */
.tilbehead19-search-wrapper {
order: 4;
width: 100%;
max-width: 100%;
flex-basis: 100%;
position: relative;
display: block;
}
.tilbehead19-search-form {
border-radius: 8px;
}
/* Kategori dropdown gizle */
.search-category {
display: none;
}
}
@media (max-width: 768px) {
.tilbehead19-header-actions .mobile-search-btn {
display: none;
}

.tilbehead19-action-badge {
position: absolute;
top: -5px;
left: 16px;
min-width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
background: #4dc761;
color: #FFFFFF;
font-size: 10px;
font-weight: 500;
border-radius: 9999px;
padding: 0 5px;
}
}

@media (max-width: 768px) {
.tilbehead19-header-actions {
order: 3;
gap: 5px;
margin-right: 0px;
}
}
@media (max-width: 576px) {
    /* --- Cart dropdown: bottom sheet --- */
    .tilbehead19-cart-dropdown {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        overflow-y: auto;
        transform: translateY(100%);
        opacity: 1;
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1300;
    }
    .tilbehead19-action-item.tilbehead19-is-open .tilbehead19-cart-dropdown {
        transform: translateY(0);
        visibility: visible;
    }

    /* --- Account dropdown: bottom sheet --- */
    .tilbehead19-account-dropdown {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        overflow-y: auto;
        transform: translateY(100%);
        opacity: 1;
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1300;
        padding: 20px;
    }
    .tilbehead19-action-item.tilbehead19-is-open .tilbehead19-account-dropdown {
        transform: translateY(0);
        visibility: visible;
    }

    /* --- Notification dropdown: bottom sheet --- */
    .tilbehead19-notification-dropdown {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        transform: translateY(100%);
        opacity: 1;
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1300;
    }
    .tilbehead19-action-item.tilbehead19-is-open .tilbehead19-notification-dropdown {
        transform: translateY(0);
        visibility: visible;
    }

    /* Dropdown açıkken backdrop overlay */
    .tilbehead19-action-item.tilbehead19-is-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(17, 24, 39, 0.5);
        z-index: 1299;
        animation: fadeInOverlay 0.25s ease forwards;
    }
    
    

/* ========================================
NOTIFICATION SYSTEM
======================================== */
/* Notification Button */
.tilbehead19-notification-btn {
position: relative;
    border-color: #fff;
    margin: 0px !important;
    width: 40px;
    height: 40px;
    background: #4dc761;
    border-radius: 50px;
    animation: none;

}

.notification-badge {
background: #F27A1A;
animation: pulse 2s ease-in-out infinite;
}


@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}


    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

   
}



 /* Bottom sheet üst tutma çubuğu */
    .tilbehead19-cart-dropdown::before,
    .tilbehead19-account-dropdown::before,
    .tilbehead19-notification-dropdown::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #D1D5DB;
        border-radius: 9999px;
        margin: 12px auto 8px;
    }
    
/* Notification Dropdown */
.tilbehead19-notification-dropdown {
width: 420px;
max-height: 520px;
padding: 0;
overflow: hidden;
}
/* Notification Header */
.tilbehead19-notification-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
background: #ffffff;
border-bottom: 1px solid #E5E7EB;
position: sticky;
top: 0;
z-index: 10;
}
.tilbehead19-notification-tabs {
display: flex;
gap: 8px;
}
.tilbehead19-notification-tab {
padding: 8px 16px;
background: transparent;
border: none;
border-radius: 10px;
font-size: 13px;
font-weight: 500;
color: #374151;
cursor: pointer;
transition: 0.25s ease;
}
.tilbehead19-notification-tab.tilbehead19-active {
background: #F27A1A;
color: #FFFFFF;
}

.tilbehead19-notification-close {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
border-radius: 6px;
color: #6B7280;
cursor: pointer;
transition: 0.25s ease;
}
.tilbehead19-notification-close:hover {
background: #F3F4F6;
color: #111827;
}
/* Notification Content */
.tilbehead19-notification-content {
max-height: 440px;
overflow-y: auto;
}
.tilbehead19-notification-tab-content {
display: none;
}
.tilbehead19-notification-tab-content.tilbehead19-active {
display: block;
}
/* Notification Item */
.tilbehead19-notification-item {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
border-bottom: 1px solid #E5E7EB;
transition: 0.25s ease;
position: relative;
}
.tilbehead19-notification-item:last-child {
border-bottom: none;
}
.tilbehead19-notification-item:hover {
background: #F8FAFC;
}
.tilbehead19-notification-item:hover .tilbehead19-notification-arrow {
transform: translateX(4px);
color: #F27A1A;
}
/* Notification Image */
.tilbehead19-notification-image {
width: 70px;
height: 105px;
flex-shrink: 0;
border-radius: 10px;
overflow: hidden;
background: #F3F4F6;
border: 1px solid #E5E7EB;
}
.tilbehead19-notification-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Notification Info */
.tilbehead19-notification-info {
flex: 1;
min-width: 0;
}
.tilbehead19-notification-title {
font-size: 11px;
font-weight: 500;
color: #111827;
line-height: 1.4;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.tilbehead19-notification-price {
display: flex;
align-items: center;
gap: 8px;
}
.tilbehead19-price-old {
font-size: 11px;
color: #6B7280;
text-decoration: line-through;
}
.tilbehead19-price-new {
font-size: 16px;
font-weight: 600;
color: #DC2626;
}
/* Notification Arrow */
.tilbehead19-notification-arrow {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #6B7280;
transition: 0.25s ease;
}
/* Empty State */
.tilbehead19-notification-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px;
text-align: center;
}
.tilbehead19-notification-empty i {
font-size: 48px;
color: #AAB7B8;
margin-bottom: 16px;
opacity: 0.5;
}
.tilbehead19-notification-empty p {
font-size: 13px;
color: #6B7280;
}
/* Scrollbar Styling */
.tilbehead19-notification-content::-webkit-scrollbar {
width: 6px;
}
.tilbehead19-notification-content::-webkit-scrollbar-track {
background: #F8FAFC;
}
.tilbehead19-notification-content::-webkit-scrollbar-thumb {
background: #D1D5DB;
border-radius: 9999px;
}
.tilbehead19-notification-content::-webkit-scrollbar-thumb:hover {
background: #D1D5DB;
}
/* Responsive */
@media (max-width: 768px) {
.tilbehead19-notification-dropdown {
    width: 360px;
    max-width: calc(100vw - 24px);
    right: 0;
    left: 10px;
    top:100px;
}
  
.tilbehead19-notification-item {
padding: 12px 16px;
}
.tilbehead19-notification-image {
width: 60px;
height: 90px;
}
}

.product-profile-info {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0 0 0 30px;
}

/* =========================
   TH Product Carousel Video
========================= */

.product-carousel-outer { position: relative; }

/* Thumbs */
.product-carousel-indicators{
  position: static;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-carousel-indicators li{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
  border: 1px solid rgba(0,0,0,.08);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.product-carousel-indicators li.active{
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.18);
}

.product-carousel-indicators img{
  display:block;
  width:100%;
  height:auto;
}

/* Main image */
.product-profile-carousel .carousel-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
}

/* Stage */
.pp-media-stage{ position: relative; }

/* Play overlay:
   Sadece ACTIVE slide üzerinde görünsün (kalabalık olmasın) */
.pp-video-play{ display:none; }

.th-video-carousel .carousel-item.active .pp-video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  z-index:5;
  background: rgba(0,0,0,.14);
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}

.th-video-carousel .carousel-item.active .pp-video-play:hover{
  background: rgba(0,0,0,.22);
  transform: translateY(-1px);
}

.th-video-carousel .carousel-item.active .pp-video-play i{
  font-size: 76px;
  color:#fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Inline video */
.pp-inline-video{
  width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
  background:#000;
}

/* Prev/Next (opsiyonel daha şık) */
.product-profile-carousel .carousel-control-prev,
.product-profile-carousel .carousel-control-next{
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.product-profile-carousel .carousel-control-prev{ left: 12px; }
.product-profile-carousel .carousel-control-next{ right: 12px; }

.product-profile-carousel .carousel-control-prev i,
.product-profile-carousel .carousel-control-next i{
  color:#111827;
  font-size: 18px;
}

/* Discount (sende zaten var, garanti olsun) */
.product-carousel-outer .discount{
  position:absolute;
  top:12px;
  left:12px;
  z-index:10;
}


@keyframes inset-blink {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

@keyframes scroll-left {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeIn9d {
    0% {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes unique-slideUp {
    0%,30%,to {
        transform: translateY(0)
    }

    35%,50% {
        transform: translateY(-30px)
    }

    55%,70% {
        transform: translateY(-60px)
    }

    75%,90% {
        transform: translateY(-90px)
    }
}

@keyframes blink {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes slideKampanya {
    0%,10%,to {
        transform: translateX(0)
    }

    14.29%,24.29% {
        transform: translateX(-100%)
    }

    28.57%,38.57% {
        transform: translateX(-200%)
    }

    42.86%,52.86% {
        transform: translateX(-300%)
    }

    57.14%,67.14% {
        transform: translateX(-400%)
    }

    71.43%,81.43% {
        transform: translateX(-500%)
    }

    85.71%,95.71% {
        transform: translateX(-600%)
    }
}

body {
    background: var(--body-bg);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 0;
    transition: all .4s
}

body,html {
    overflow-x: hidden;
    max-width: 100%
}

/* === GENEL KAPSAYICI === */
.pdp-rating-box {
  position: relative;
  display: inline-block;
  font-family: Poppins, Arial, sans-serif;
}

/* === ÜST SATIR === */
.pdp-rating-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pdp-rating-average {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top: 3px;
}

.pdp-star {
  font-size: 13px;
  color: #ddd;
}

.pdp-star.is-filled {
  color: #f5b400;
}
/* === Değerlendirme + Soru Sor hizalama === */
.urun-info-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Nokta ayraç */
.urun-detay-dot {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}

/* Soru Sor link */
.pdp-question-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: color .2s ease;
}

.pdp-question-link i {
  font-size: 13px;
  color: #999;
  transition: color .2s ease;
}

.pdp-question-link:hover {
  color: #222;
}

.pdp-question-link:hover i {
  color: #222;
}


.pdp-rating-text {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  margin-left: 4px;
}
.pdp-rating-text:hover {
  color: #222;
  text-decoration: underline;
}


.pdp-photo-icon {
  font-size: 13px;
  color: #333;
}

/* === POPUP === */
.pdp-rating-popup {
  position: absolute;
  top: 130%;
  left: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  z-index: 50;
}

.pdp-rating-box:hover .pdp-rating-popup {
  display: block;
}

/* === BAŞLIK === */
.pdp-popup-title {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.pdp-popup-title span {
  font-weight: 400;
  color: #777;
}

/* === SATIR === */
.pdp-popup-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* SOL ORAN */
.pdp-percent {
  width: 26px;
  font-size: 12px;
  color: #999;
  text-align: right;
}

/* YILDIZ ETİKET */
.pdp-star-label {
  width: 36px;
  font-size: 12px;
  color: #555;
}

.pdp-star-label i {
  color: #f5b400;
  font-size: 11px;
}

/* BAR */
.pdp-bar {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.pdp-bar span {
  display: block;
  height: 100%;
  background: #f5b400;
  border-radius: 3px;
}

/* SAĞ ADET */
.pdp-count {
  width: 18px;
  font-size: 12px;
  color: #444;
  text-align: right;
}

/* FOOTER */
.pdp-popup-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #666;
}


.delivery-bar{
    width:100%;
    margin-top:12px;
    padding:12px 14px;
    border:1px solid #e5e7eb;
    border-radius:8px;
    background:#f9fafb;
    box-sizing:border-box;
}

.delivery-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.delivery-text{
    font-size:13.5px;
    line-height:1.4;
    color:#111827;
}

.delivery-text strong{
    color:#059669;
    font-weight:600;
}

.delivery-countdown{
    font-size:16px;
    font-weight:600;
    font-variant-numeric:tabular-nums;
    white-space:nowrap;
}

.delivery-countdown em{
    color:#9ca3af;
    margin:0 2px;
}

.delivery-meta{
    margin-top:6px;
    font-size:12px;
    color:#6b7280;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.delivery-meta div{
    display:flex;
    align-items:center;
    gap:6px;
}

.delivery-meta i{
    font-size:12px;
    color:#9ca3af;
}

.delivery-bar.alert{
    border-color:#fca5a5;
    background:#fef2f2;
}

.delivery-bar.pulse{
    animation:pulse 1s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.01);}
    100%{transform:scale(1);}
}

@media(max-width:768px){
    .delivery-row{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .delivery-countdown{
        font-size:15px;
    }
}


.action-btn{
    pointer-events: auto !important;
    position: relative;
    z-index: 3;
}

/* Favori ile aynı yuvarlak ikon buton */
.product-buttons .action-btn {
    width: 55px;
    height: 55px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid #e3e3e3;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all .2s ease;
    color: #9f9f9f;
}

/* İkon boyutu */
.product-buttons .action-btn i{
    font-size:22px;
    line-height:1;
}

/* Hover – favori davranışı */
.product-buttons .action-btn:hover{
    border-color:#ff7a00;
    color:#ff7a00;
    background:#fff7f0;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    transition: box-shadow .3s ease;
}

/* Sepete ekle ile hizalama */
.product-buttons{
    display:flex;
    align-items:center;
    gap:8px;
}



.bundle-suggestion{
    margin-top:6px;
    font-size:12px;
    color:#ff7a00;
    cursor:pointer;
    font-weight:600;
}

.bundle-option.best {
    border-color:#ff7a00;
    background:#fff5ee;
}

.bundle-option.best .bundle-badge{
    background:#fff0e5;
    color:#ff7a00;
    border-color:#ff7a00;
}


/* =========================
   BUNDLE BOX
========================= */
.bundle-box {
    
    margin-top: 16px;
    
}

.bundle-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #777777;
}

/* =========================
   PAKETLER
========================= */
.bundle-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.bundle-option {
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 8px 4px 5px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all .2s ease;
}

.bundle-option:hover {
    border-color: #ff7a00;
}

.bundle-option.active {
    border-color: #ff7a00;
    background: #fff5ee;
}

.bundle-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    padding: 1px 10px;
    border-radius: 10px;
    background: #f8f8f8;
    color: #a3a3a3;
    font-weight: 500;
    
    white-space: nowrap;
}

.bundle-option .qty {
    font-size: 11px;
    font-weight: 600;
    color: #6b6b6b;
}

.bundle-option .save {
    font-size: 9px;
    color: #1fa463;
    margin-top: 2px;
}

/* =========================
   ALT ÖZET ALANI
========================= */
.bundle-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 12.5px;
    background: #fff;
}

.summary-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bundle-summary .old-price{
    color: #b5b5b5;
    text-decoration: line-through;
}
.new-price {
    font-weight: 600;
    color: #222;
}

.save-text {
    color: #1fa463;
    font-weight: 500;
}

/* =========================
   ADET ALANI (BUNDLE İÇİ)
========================= */
.summary-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* − ve + → YUVARLAK */
.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
}

.qty-btn:hover {
    border-color: #ff7a00;
    color: #ff7a00;
}

/* ORTA INPUT KUTUSU */
.qty-number {
    min-width: 34px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #fff;
}

.qty-number input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    padding: 0;
}

/* =========================
   MOBİL
========================= */
@media (max-width: 768px) {

    .bundle-options {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .bundle-option {
        min-width: 120px;
        flex-shrink: 0;
    }

    .bundle-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .summary-right {
        justify-content: space-between;
    }
}


.th-side-panel {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    font-size: 13px;
    color: #333;
    background: #fff;
}

/* Satırlar */
.th-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.45;
}

/* İkonlar – sakin */
.th-line i {
    font-size: 14px;
    color: #f27a1a;
    opacity: 0.75;
    margin-top: 2px;
}

/* Sayaç satırı */
.th-timer {
    font-weight: 500;
    color: #111;
}

.th-timer strong {
    font-weight: 700;
    color: #f27a1a;
}

/* Geri planda */
.th-line.muted {
    color: #777;
}

.th-line.muted i {
    opacity: 0.4;
}

/* Ayırıcı */
.th-sep {
    height: 1px;
    background: #f1f1f1;
    margin: 10px 0;
}


.qsf-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 18px;
}

/* Ürün sayısı */
.qsf-result-count {
    font-size: 14px;
    color: #444;
    margin-right: 8px;
    white-space: nowrap;
}

.qsf-result-count strong {
    font-weight: 600;
    color: #111;
}

/* ==================================================
   QUICK BUTTON CONTAINER
================================================== */

.qsf-quick-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ==================================================
   CHIP / BUTTON BASE
================================================== */

.qsf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 999px;
    border: 1px solid;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    line-height: 1;
    transition: all .15s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* ikon */
.qsf-btn .qsf-ico {
    font-size: 14px;
    line-height: 1;
}

/* hover */
.qsf-btn:hover {
    transform: translateY(-1px);
    background: rgba(0,0,0,.04);
}

/* ==================================================
   RENK VARYANTLARI (TRENDYOL STİL)
================================================== */

/* Stok */
.qsf-stock {
    color: #1b7f5a;
    background: #f1fbf7;
    border-color: #ccefe3;
}

/* Ücretsiz kargo */
.qsf-free {
    color: #ff7a00;
    background: #fff6ed;
    border-color: #ffd7b0;
}

/* Hızlı */
.qsf-fast {
    color: #e91e63;
    background: #fff0f6;
    border-color: #f7c2d4;
}

/* Puan */
.qsf-rate {
    color: #ff9800;
    background: #fff7ec;
    border-color: #ffe0b2;
}

/* Viral */
.qsf-viral {
    color: #6f42c1;
    background: #f5f0ff;
    border-color: #d9ccff;
}

/* İndirim */
.qsf-sale {
    color: #009688;
    background: #f0fbfa;
    border-color: #b2dfdb;
}

/* ==================================================
   AKTİF CHIP
================================================== */

.qsf-btn.is-active {
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

/* X işareti */
.qsf-btn.is-active::after {
    content: "×";
    font-size: 14px;
    margin-left: 6px;
    opacity: .7;
}

/* ==================================================
   SIRALAMA (RADIO) – CHIP GİBİ
================================================== */

.qsf-sortbar .lag-checkbox {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    background: #fafafa;
    transition: all .15s ease;
}

.qsf-sortbar .lag-checkbox:hover {
    background: #f3f3f3;
}

/* radio gizle */
.qsf-sortbar input[type="radio"] {
    display: none;
}

/* seçili */
.qsf-sortbar input[type="radio"]:checked + label {
    font-weight: 500;
    color: #0d6efd;
}

/* ==================================================
   SOL FİLTRELER – UYUMLU
================================================== */

.category-filter-list .lag-checkbox {
    padding: 6px 8px;
    border-radius: 6px;
    transition: background .15s ease;
}

.category-filter-list .lag-checkbox:hover {
    background: #f6f6f6;
}

.category-filter-list input[type="checkbox"]:checked + label {
    font-weight: 500;
    color: #0d6efd;
}

/* ==================================================
   MOBİL
================================================== */

@media (max-width: 768px) {

    .qsf-topbar {
        gap: 6px;
    }

    .qsf-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/* ANA */
.price-container-pc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FİYAT + TAKSİT SATIRI */
.price-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* SOL BLOK */
.price-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* İNDİRİM */
.discount-badge {
    background: #fff1e6;
    color: #ff6000;
    border-radius: 6px;
    padding: 7px 9px;
    min-width: 48px;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}

.discount-rate { font-size: 14px; }
.discount-text { font-size: 10px; }

/* FİYATLAR */
.price-values {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.current-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff6000;
}

/* TAKSİT KARTI – SAĞDA */
.installment-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
}

.installment-card i {
    color: #ff6000;
    font-size: 18px;
}

.installment-main {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.installment-sub {
    font-size: 12px;
    color: #666;
}

/* HAVALE */
.transfer-discount-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef8f2;
    border: 1px solid #cfe9d8;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #1f7a3f;
}

/* MOBİL */
@media (max-width: 768px) {
    .price-main-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .installment-card {
        width: 100%;
        justify-content: flex-start;
    }

    .current-price {
        font-size: 22px;
    }
}

/* ===============================
   SMART PURCHASE – FINAL CSS
   =============================== */

.smart-purchase{
  margin:14px 0;
  background:#ffffff;
}

.sp-header{
  margin-bottom:8px;
}

.sp-sub{
  font-size:12px;
  color:#666;
}

/* OPTIONS */
.sp-options{
  display:flex;
  gap:8px;
}

/* CARD */
.sp-card{
  position:relative;
  flex:1;
  border:1px solid #e5e5e5;
  border-radius:10px;
  padding:15px 15px 8px;
  background:#ffffff;
  cursor:pointer;
  text-align:center;
  transition:border .15s ease, background .15s ease;
}

.sp-card:hover{
  border-color:#ff6000;
}

.sp-card.active{
  border-color:#ff6000;
  background:#fff6ef;
}

/* BADGES */
.sp-badge,
.sp-badge1,
.sp-advantage-arrow{
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  font-size:10px;
  font-weight:600;
  padding:2px 10px;
  border-radius:999px;
  white-space:nowrap;
  color:#ffffff;
}

.sp-badge{ background:#f27a1a; }
.sp-badge1{ background:#6d6d6d; }
.sp-advantage-arrow{ background:#1ba672; }

/* CONTENT */
.sp-main{
  margin-top:14px;
}

.sp-name{
  font-size:13px;
  font-weight:600;
  color:#222;
}

/* META */
.sp-meta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  margin-top:6px;
}

.sp-chip{
  font-size:11px;
  padding:2px 8px;
  border-radius:999px;
  background:#f2f2f2;
  color:#444;
}

.sp-save{
  font-size:11px;
  font-weight:600;
  color:#1ba672;
}

/* 📱 MOBİL */
@media (max-width:768px){

  /* 1 Adet gizli */
  .sp-card[data-qty="1"]{
    display:none;
  }

  /* Mobilde de yan yana */
  .sp-options{
    display:flex;
    flex-direction:row;
    gap:8px;
  }

  .sp-card{
    flex:1;
    padding:14px 10px 8px;
  }

  .sp-name{
    font-size:12px;
  }

  .sp-chip,
  .sp-save{
    font-size:10px;
  }
}


/* =========================
   ÜRÜN ROZETLERİ
   ========================= */
.urun-rozetler-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.urun-rozet {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
}

.urun-rozet.indirim { background: #ff3d3d; }
.urun-rozet.kritik { background: #d32f2f; }
.urun-rozet.populer { background: #ff9800; }
.urun-rozet.video { background: #673ab7; }

/* =========================
   AVANTAJ BLOĞU
   ========================= */
.urun-avantajlar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.avantaj-item {
    background: #fafafa;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
}

.avantaj-item i {
    font-size: 18px;
    color: #ff6000;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 768px) {
    .urun-avantajlar {
        grid-template-columns: 1fr;
    }
}



.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===============================
   CONVERSION BLOCK – FINAL STYLE
   =============================== */

.conversion-block {
    padding: 1px 12px 12px 12px;

}

/* --- BAR --- */
.conversion-bar {
    height: 6px;
    background: #e0e0e0; /* nötr gri */
    border-radius: 6px;
    overflow: hidden;
}

.conversion-bar-fill {
    height: 100%;
    display: block;
    background: #ff6f00; /* Trendyol'a yakın turuncu */
    border-radius: 6px;
    transition: width 0.6s ease;
}

/* --- TEXT --- */
.conversion-text-inner {
    font-size: 11px;
    font-weight: 400;
    color: #212121; /* Trendyol siyahı */
    white-space: nowrap;
    transition: opacity 0.35s ease;
}

/* SADECE RAKAMLAR */
.conversion-text-inner strong {
    color: #d32f2f; /* kırmızı vurgu */
    font-weight: 600;
}

/* STOK DURUMLARI */
.conversion-text-inner.warning {
    color: #212121;
}

.conversion-text-inner.warning strong {
    color: #f57c00;
}

.conversion-text-inner.danger {
    color: #c62828;
    font-weight: 500;
}

/* MOBİL */
@media (max-width: 768px) {
    .conversion-text-inner {
        font-size: 12.5px;
    }
}



/* Kart numarası alanı */
#orderInputCardNumber1 {
    background-repeat: no-repeat;
    background-size: 100px; /* Kart logosu büyütüldü */
    background-position: right 10px center; /* Sağa boşluk */
    background-image: url('https://www.tilbehome.com/theme/___shuttle/resimler1/banks-logos.png?v=1763456001');
    padding-right: 40px !important; /* İkon için yeterli boşluk */
    background-color: #fff;
}

.methods .cc-installment-1 {
    position: relative;
    background-color: #f0fff5!important;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(40,167,69,.25)
}

.methods .cc-installment-1::after {
    content: "Peşin Fiyatına 3 Taksit";
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer
}

.methods .cc-installment-1::before {
    content: "Taksit imkanı yalnızca Garanti Bankası kartlarında geçerlidir.";
    position: absolute;
    left: 120px;
    top: -45px;
    background: #fff;
    color: #111827;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.4;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transform: translateY(4px);
    transition: opacity .25s ease,transform .25s ease;
    z-index: 100
}

.methods .cc-installment-1:hover::before {
    opacity: 1;
    transform: translateY(0)
}

.methods .cc-installment-1 .info {
    font-weight: 600;
    color: #155724
}

@media (max-width:768px) {
    .methods .cc-installment-1::after {
        font-size: 9px;
        left: 40px;
        top: 32%;
        transform: none;
        padding: 2px 5px;
        font-weight: 400
    }

    .methods .cc-installment-1::before {
        left: 40px;
        top: -40px;
        font-size: 10.5px;
        padding: 6px 8px;
        white-space: normal;
        width: 210px;
        line-height: 1.4;
        text-align: left
    }
}

.clearfix::after {
    content: "";
    display: table;
    clear: both
}

.corporate-feature-grid {
    margin-bottom: 20px
}

.corporate-feature-card {
    background: #fff;
    box-shadow: none
}

.corporate-feature-card:hover,.service-list li {
    background: #fcfcfc
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.service-list li {
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 16px
}

.service-icon-list {
    color: #34495e;
    margin-right: 12px;
    font-size: 20px
}

.corporate-market-block {
    background: #34495e;
    color: #fff
}

.social-links-corporate i {
    font-size: 20px;
    color: #34495e;
    margin-left: 5px
}

.social-links-corporate i:hover {
    color: #e95d34
}

@media (max-width:992px) {
    .corporate-feature-card,.service-item {
        width: 50%;
        margin-bottom: 30px
    }

    .info-column {
        width: 100%;
        float: none
    }

    .corporate-market-block .market-links,.corporate-market-block .social-links-corporate {
        width: 100%;
        float: none;
        text-align: left
    }

    .social-links-corporate {
        text-align: center;
        margin-top: 20px
    }
}

@media (max-width:600px) {
    .corporate-h1 {
        font-size: 28px
    }

    .corporate-feature-card,.service-item {
        width: 100%;
        float: none;
        margin-bottom: 20px
    }

    .corporate-feature-grid,.corporate-info-2col {
        margin-left: 0;
        margin-right: 0
    }

    .corporate-feature-card,.info-column,.service-item {
        padding: 0
    }

    .social-links-corporate {
        text-align: center
    }
}

.corporate-wrapper {
    background: #fff;
    line-height: 1.6;
    color: #444;
    margin: 0
}

.corporate-container {
    margin: 0 auto;
    padding: 50px 25px
}

.corporate-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 40px
}

.corporate-h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px
}

.corporate-icon-main {
    color: #e95d34;
    font-size: 32px;
    margin-right: 10px
}

.corporate-lead-text {
    font-size: 18px;
    color: #616161;
    max-width: 850px;
    margin: 0 auto
}

.corporate-section-title {
    font-size: 26px;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #1a1a1a;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px
}

.corporate-icon-small {
    color: #34495e;
    margin-right: 10px
}

.corporate-feature-grid {
    margin-left: -15px;
    margin-right: -15px
}

.corporate-feature-card {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    padding: 30px 15px;
    border-radius: 10px;
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
    transition: all .3s;
    text-align: center;
    margin-bottom: 30px
}

.corporate-feature-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233,93,52,.15);
    border-color: #e95d34
}

.feature-icon {
    font-size: 45px;
    margin-bottom: 15px;
    color: #e95d34
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 8px
}

.feature-text {
    font-size: 14px
}

.corporate-info-2col {
    margin-left: -15px;
    margin-right: -15px
}

.info-column {
    width: 50%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box
}

.info-item-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 4px solid #34495e;
    font-size: 15px;
    font-weight: 500;
    color: #333
}

.info-icon {
    color: #e95d34;
    margin-right: 10px
}

.corporate-link {
    color: #34495e;
    text-decoration: none;
    font-weight: 600
}

.corporate-link:hover {
    color: #e95d34;
    text-decoration: underline
}

.corporate-service-grid {
    margin-left: -15px;
    margin-right: -15px
}

.service-item {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    padding: 25px 15px;
    border-radius: 8px;
    margin-bottom: 20px
}

.service-icon {
    font-size: 35px;
    margin-bottom: 10px;
    color: #34495e
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 5px
}

.service-text {
    font-size: 14px;
    color: #666
}

.corporate-market-block {
    padding: 25px;
    background: #f2f2f2;
    border-radius: 8px;
    overflow: hidden
}

.market-links {
    float: left;
    width: 60%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px
}

.market-title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 10px
}

.market-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #34495e;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 5px
}

.market-badge:hover {
    background-color: #e95d34
}

.social-links-corporate {
    float: right;
    width: 40%;
    text-align: right;
    margin-top: 10px
}

.corporate-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    background-color: #e95d34;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-right: 15px
}

.corporate-btn:hover {
    background-color: #d64a27
}

@media (max-width:992px) {
    .corporate-feature-card,.service-item {
        width: 50%;
        margin-bottom: 30px
    }

    .info-column {
        width: 100%;
        float: none
    }

    .corporate-market-block .market-links,.corporate-market-block .social-links-corporate {
        width: 100%;
        float: none;
        text-align: left
    }

    .social-links-corporate {
        text-align: center
    }
}

@media (max-width:600px) {
    .corporate-h1 {
        font-size: 28px
    }

    .corporate-feature-card,.service-item {
        width: 100%;
        float: none;
        margin-bottom: 20px
    }

    .corporate-feature-grid,.corporate-info-2col,.corporate-service-grid {
        margin-left: 0;
        margin-right: 0
    }

    .corporate-feature-card,.info-column,.service-item {
        padding: 0
    }

    .social-links-corporate {
        text-align: center
    }
}

.r4s8g {
    margin: 0;
    font-family: "Inter","Segoe UI",Roboto,Arial,sans-serif;
    background: #fff;
    color: #1a202c;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.c5n7p {
    margin: 0 auto;
    padding: 30px 20px 60px;
    box-sizing: border-box
}

.h1d2f {
    padding: 50px 0 30px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px
}

.t8z3g {
    font-size: 38px;
    font-weight: 900;
    color: #004aad;
    line-height: 1.2;
    margin: 0 0 10px
}

.s9k4p {
    color: #1a202c
}

.p0l6e {
    font-size: 19px;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto
}

.a7d4f {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center
}

.k2t9j {
    flex: 1 1 280px;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .3s ease
}

.k2t9j:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1)
}

.fa-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block
}

.k2t9j:nth-child(1) .fa-icon {
    color: #004aad
}

.k2t9j:nth-child(2) .fa-icon {
    color: #ff9800
}

.k2t9j:nth-child(3) .fa-icon {
    color: #00b894
}

.h3n5m {
    margin: 0 0 8px;
    font-size: 17px;
    color: #1a202c;
    font-weight: 800
}

.p9s7l {
    margin: 0;
    font-size: 15px;
    color: #4a5568
}

.g0v8c {
    padding: 30px;
    background: #eaf3ff;
    border-radius: 14px;
    margin-bottom: 40px
}

.h2d1e {
    font-size: 26px;
    color: #004aad;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px
}

.s3j7f {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.a6r2h {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 5px solid #004aad;
    box-shadow: 0 4px 15px rgba(0,0,0,.04)
}

.n8y4z {
    font-size: 32px;
    font-weight: 900;
    color: #004aad;
    flex-shrink: 0;
    line-height: 1;
    opacity: .8
}

.h3c9v {
    margin: 0 0 4px;
    font-size: 18px;
    color: #1a202c;
    font-weight: 700
}

.p1z5x {
    margin: 0;
    font-size: 15px;
    color: #4a5568
}

.d9x2w {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px
}

@media (max-width:768px) {
    .d9x2w {
        grid-template-columns: 1fr
    }
}

.m4f8g {
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0
}

.h2w0e {
    font-size: 24px;
    color: #004aad;
    font-weight: 800;
    margin: 0 0 20px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px
}

.h3l7p {
    margin: 25px 0 10px;
    font-size: 17px;
    color: #1a202c;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px
}

.h3l7p .fa {
    font-size: 20px;
    flex-shrink: 0
}

.h3l7p:nth-child(2) .fa {
    color: #004aad
}

.h3l7p:nth-child(4) .fa {
    color: #ff9800
}

.h3l7p:nth-child(6) .fa {
    color: #00b894
}

.p5s1t {
    margin: 0 0 20px;
    font-size: 15px;
    color: #4a5568
}

.b0x5z {
    margin-top: 15px;
    padding: 15px;
    background: #fffbe6;
    border-radius: 8px;
    font-size: 15px;
    color: sienna;
    font-weight: 600;
    border: 1px solid #ffe8b6
}

.a2s6t {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.b7r3x {
    background: #004aad;
    color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,74,173,.3)
}

.h3q1w {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    text-align: center
}

.d5e0f {
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px
}

.p6a2b {
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 8px
}

.i1c5j,.l8w4u {
    background: #fff
}

.l8w4u {
    display: inline-block;
    color: #004aad;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    transition: background .3s ease
}

.l8w4u:hover {
    background: #f0f0f0
}

.i1c5j {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,.03)
}

.h4b2d {
    margin: 0 0 12px;
    font-size: 16px;
    color: #004aad;
    font-weight: 700
}

.p7g3k {
    margin: 6px 0;
    font-size: 15px;
    color: #4a5568
}

.a3e4f {
    color: #004aad;
    text-decoration: none;
    font-weight: 600
}

.s1q3a {
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
    margin-top: 40px
}

.h2f5g {
    font-size: 26px;
    color: #1a202c;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px
}

.a8y2x {
    border-bottom: 1px solid #edf2f7;
    padding: 15px 0
}

.h4q7r,.s9c4d span {
    font-weight: 700;
    color: #004aad
}

.h4q7r {
    margin: 0;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.08);
    margin: 20px auto
}

.contact-form h6,.contact-form label {
    color: #036;
    font-weight: 600;
    margin-bottom: 15px
}

.contact-form hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    margin: 10px 0 20px
}

.contact-form label {
    margin-bottom: 5px;
    display: block
}

.contact-form .form-control,.contact-form .m-input,.contact-form textarea {
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 6px;
    padding: 8px 12px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: .3s
}

.contact-form .form-control:focus,.contact-form .m-input:focus,.contact-form textarea:focus {
    outline: 0;
    border-color: #00529b;
    box-shadow: 0 0 5px rgba(0,82,155,.2)
}

.contact-form button.btn-success {
    background: #00529b;
    border: 0;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    transition: .3s
}

.contact-form button.btn-success:hover {
    background: #036
}

.qk-app-dropdown-products .sticky-contents .items .item .info .title {
    font-size: 10px!important;
    margin-bottom: 6px
}

.urun-info-container .product-reviews .stars .star.fill .fa-star-half {
    bottom: 2px;
    position: absolute
}

#product-comment-list-v2-link {
    scroll-margin-top: 80px
}

.promo-banner-grid12 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    margin: 10px 0 30px
}

.promo-banner-item12 {
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-decoration: none
}

.promo-banner-item12 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .25s ease,box-shadow .25s ease
}

.promo-banner-item12:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,.25)
}

@media (max-width:1024px) {
    .promo-banner-item12 {
        flex: 1 1 calc(50% - 20px)
    }
}

@media (max-width:600px) {
    .promo-banner-item12 {
        flex: 1 1 100%
    }
}

.rende-masaustu-liste {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg,#ff8008 0,#ffc837 100%);
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box
}

.rende-masaustu-liste h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,.25)
}

.rende-masaustu-liste h3 {
    font-size: 20px;
    margin: 8px 0 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,.2)
}

.rende-masaustu-liste p {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 400;
    opacity: .95;
    text-shadow: 1px 1px 2px rgba(0,0,0,.15)
}

.matara-masaustu-liste-back {
    background: linear-gradient(to right,#f27300,#ff9f1a,#fff)
}

.p-g-mod.p-g-mod-t-55.p-g-mod-showcase.firsat-urunleri-solmenu {
    margin-bottom: 0px !important;
}

.matara-masaustu-liste {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px 0 0;
    padding: 0
}

.matara-masaustu-liste img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}



.invoice-info-description label {
    margin: 0
}



@media (max-width:768px) {

    .firsat-urunleri-solmenu .pattern-group-body {
        border-radius: 0;
        border: 0 solid #fff;
        padding: 0 20px 0 0;
        margin-top: 0;
        margin-bottom: 0
    }

}


.door-payment-methods {
    background-color: #fff;
    border-radius: 14px
}

.door-payment-methods .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: #333
}

.door-payment-methods .method {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 25px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #333;
    background-color: #fff;
    transition: all .25s ease;
    position: relative;
    z-index: 1
}

.payment-method-form {
    padding: 20px 1px
}

.door-payment-methods .method:last-child {
    border: 1px solid #333
}

.door-payment-methods .method .checkbox {
    flex-shrink: 0
}

.door-payment-methods .method .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    cursor: pointer;
    transition: all .2s ease
}

.door-payment-methods .method.active .form-check-input {
    border-color: #3178c6;
    background-color: #3178c6
}

.door-payment-methods .method .name {
    flex-grow: 1
}

.door-payment-methods .method .name .info span {
    font-size: 16px;
    font-weight: 500;
    color: #333
}

.door-payment-methods .method .price {
    flex-shrink: 0;
    font-weight: 600;
    color: #3178c6
}

.door-payment-methods .method:hover {
    background-color: #f1f7ff;
    border-color: #3178c6
}

.door-payment-methods .method:focus-within {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(49,120,198,.3)
}

.discount-prompt.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    max-width: fit-content
}

.discount-prompt.social-proof i {
    font-size: 12px;
    color: #f27a1a
}

.discount-prompt.social-proof strong {
    color: #f27a1a;
    font-weight: 600
}

@media (max-width:480px) {
    .discount-prompt.social-proof {
        font-size: 11px
    }

    .discount-prompt.social-proof i {
        font-size: 12px
    }
}

.free-shipping-active .inset-bar-icon {
    display: none
}

.inset-shipping-bar.free-shipping-active .inset-bar-content {
    justify-content: center
}

.inset-shipping-bar {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px 10px;
    box-shadow: inset 0 4px 8px rgba(0,0,0,.1);
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 10px
}

.inset-bar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background: #4dc761;
    border-radius: 3px;
    transition: width .5s ease
}

.inset-bar-content {
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-social-icons a,.inset-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.inset-bar-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.08)
}

.inset-bar-icon i {
    color: #4dc761;
    font-size: 14px
}

.inset-bar-text {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a
}

.inset-bar-text strong {
    color: #4dc761
}

.inset-bar-free {
    color: #fff;
    background: #4dc761;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    animation: inset-blink 1s infinite;
    display: inline-block
}

@media (max-width:768px) {
    .inset-shipping-bar {
        padding: 20px 14px;
        margin-top: 10px
    }

    .inset-bar-icon {
        width: 32px;
        height: 32px
    }

    .inset-bar-icon i {
        font-size: 16px
    }

    .inset-bar-free,.inset-bar-text {
        font-size: 14px;
        padding: 3px 10px
    }
}

@media (max-width:480px) {
    .inset-shipping-bar {
        padding: 15px 12px;
        margin-top: 10px
    }

    .inset-bar-icon {
        width: 28px;
        height: 28px
    }

    .inset-bar-icon i {
        font-size: 14px
    }

    .inset-bar-free,.inset-bar-text {
        font-size: 13px;
        padding: 2px 8px
    }
}

.cart-estimated-delivery,.cart-shipping-progress {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px
}

.cart-shipping-progress .progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 5px;
    margin-top: 6px
}

.cart-shipping-progress .progress {
    height: 8px;
    background: linear-gradient(90deg,#4caf50,#8bc34a);
    border-radius: 5px
}

.cart-shipping-progress .shipping-msg {
    margin-bottom: 4px
}

.cart-shipping-progress .shipping-msg.success {
    color: #4caf50;
    font-weight: 700
}

.cart-estimated-delivery {
    background: #fffbe6;
    border: 1px solid #ffe58f
}

.shopping-buttons-1 .btn-continue {
    background-color: #fff;
    border-color: #f27a1a;
    color: #f27a1a;
    box-shadow: 0 4px 10px rgba(0,0,0,.1)
}

.footer-social {
    text-align: center;
    margin: 30px 0
}

.footer-social-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #dedede
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 15px;
    transition: all .3s ease
}

.footer-social-icons a,.footer-social-icons a.tiktok,.pcomment-list-top button {
    background: #000;
    color: #fff
}

.footer-social-icons a.tiktok:hover,.footer-social-icons a:hover {
    background: #ff0050
}

.product-reviews .rating-average {
    color: #000;
    font-size: 14px;
    font-weight: 500
}

.product-reviews .rating-count {
    color: #000;
    font-size: 13px;
    font-weight: 500
}

.product-reviews .rating-count img {
    margin-top: -3px;
    margin-left: 3px
}

.stars .rating-count {
    gap: 5px
}

.pcomment-list-top,.pcomment-list-totals {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px
}

.pcomment-list-totals .total,.pcomment-list-totals p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: normal
}

.pcomment-list-totals p {
    margin: 0;
    font-weight: 400
}

.pcomment-list-totals .stars .star.fill {
    font-size: 14px
}

.pcomment-list-totals .stars .star i {
    color: #e2e2e2
}

.pcomment-list-totals .stars .star.fill i {
    color: #fc0
}

.pcomment-list-top {
    gap: 8px;
    justify-content: space-between;
    background: 0 0;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 10px
}

.pcomment-list-top button {
    width: fit-content;
    font-size: 12px;
    border-radius: 200px;
    border: 0
}

.product-comment-list-v2 .alt-title {
    font-weight: 500;
    font-size: 15px
}

.product-comment-list-v2 .owl-carousel .owl-item {
    width: 60px!important
}

.product-comment-list-v2 .comment-photos .item {
    padding: 0;
    border-radius: 10px;
    width: 50px;
    background: #333;
    border: 1px solid #333
}

.product-comment-list-v2 .comment-photos .item img {
    border-radius: 10px;
    max-height: 50px;
    width: 50px
}

.product-comment-list-v2 .show-more button {
    padding: 8px 15px;
    border-radius: 10px;
    background: 0 0;
    color: #000;
    font-size: 13px
}

.product-comment-list-v2 .comments .item .customer .approved {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
    background: #d4f8e8;
    color: #188330;
    border-radius: 4px
}

.product-comment-list-v2 .comments .item .customer .approved::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    font-size: 10px;
    background: #188330;
    color: #fff;
    border-radius: 50%
}

.urun-detay-dot {
    width: 4px;
    height: 4px;
    background: #777;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-top: -8px
}

.product-comment-list-v2 .summary .item .rate .light {
    background: #d8d8d863
}

.card-product .card-product-inner .buttons .btn-cart {
    color: #f27a1a;
    width: 80%;
    font-size: 12px;
    font-weight: 500
}

.card-product .card-product-inner .buttons .btn-cart,.modal-content .buttons .btn-cart {
    background-color: #fff;
    border: 1px solid #f27a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer
}

.card-product .card-product-inner .buttons .btn-cart:hover,.modal-content .buttons .btn-cart:hover {
    background-color: #ff5c00;
    color: #fff!important;
    border-color: #ff5c00
}

.fa-star,.fas,.product-reviews .card-list-product .fa {
    font-weight: 600;
    font-size: 12px
}

.slash199178 {
    font-size: 10px;
    line-height: 1;
    vertical-align: middle;
    margin: 0 4px;
    color: #000
}

.free-shipping-limit .info .name {
    font-size: 16px;
    font-weight: 600
}

.indirim-box {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.indirim-box i {
    font-size: 20px;
    color: #ff9800;
    margin-top: 2px
}

.indirim-icerik {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.tilbehomeMobilMenu456-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0-2px 10px rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 8px;
    z-index: 998;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6
}

.tilbehomeMobilMenu456-menu-center-wrapper {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 80px;
    background-color: #299e44;
    border-radius: 40px 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgb(0 0 0/20%);
    z-index: 99
}

.tilbehomeMobilMenu456-menu-center-wrapper a {
    text-align: center;
    color: #fff;
    text-decoration: none
}

.tilbehomeMobilMenu456-menu-center-wrapper i {
    font-size: 26px;
    margin-bottom: 2px;
    color: #fff
}

.tilbehomeMobilMenu456-menu-center-wrapper span {
    font-size: 11px;
    font-weight: 400;
    color: #fff
}

.tilbehomeMobilMenu456-menu-center-wrapper .badge {
    font-size: 10px;
    font-weight: 700;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    padding: 4px 6px;
    position: absolute;
    top: -4px;
    right: 3px
}

.tilbehomeMobilMenu456-menu {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center
}

.tilbehomeMobilMenu456-menu-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #434242
}

.tilbehomeMobilMenu456-menu-item i {
    display: block;
    font-size: 17px;
    margin-bottom: 0;
    color: #434242
}

.tilbehomeMobilMenu456-menu-item span {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: #434242
}

.tilbehomeMobilMenu456-menu-spacer-left,.tilbehomeMobilMenu456-menu-spacer-right {
    flex: .4
}

@media (min-width:992px) {
    .tilbehomeKategoriMenu456-container,.tilbehomeMobilMenu456-container {
        display: none!important
    }
}

.thkm456-container {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background: rgba(0,0,0,.25);
    font-family: "Poppins",sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    overflow-y: auto;
    padding-top: 35px
}

.thkm456-container.active {
    display: flex
}

.thkm456-backdrop {
    position: fixed;
    inset: 0;
    background: 0 0;
    cursor: pointer;
    z-index: 10001
}

.thkm456-menu {
    position: relative;
    background: #fff;
    margin: 0 1px 15px;
    border-radius: 14px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10002;
    outline: 0
}

.thkm456-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 5px 25px;
    user-select: none
}

.thkm456-close {
    font-size: 45px;
    background: 0 0;
    border: 0;
    cursor: pointer;
    color: #666;
    transition: color .25s ease;
    font-weight: 700;
    padding: 0;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 50%;
    line-height: 36px
}

.thkm456-search {
    display: flex;
    padding: 20px 0 10px 20px;
    user-select: text
}

.thkm456-search input[type=search] {
    flex-grow: 1;
    font-size: 12px;
    padding: 20px;
    border: 1px solid #299e44;
    border-right: none;
    border-radius: 40px 0 0 40px;
    outline: 0;
    box-shadow: none;
    font-weight: 400;
    color: #333
}

.thkm456-search input[type=search]::placeholder {
    color: #999;
    font-style: italic
}

.thkm456-search input[type=search]:focus {
    border-color: #299e44!important;
    box-shadow: 0 0 6px rgba(54,178,87,.3)
}

.thkm456-logo img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain
}

.thkm456-logo,.thkm456-search button {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.thkm456-search button {
    width: 50px;
    background: #299e44;
    border: 0;
    border-radius: 0 40px 40px 0;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    justify-content: center;
    transition: background .3s ease
}

.thkm456-search button:focus,.thkm456-search button:hover {
    background: #2e8c4a;
    outline: 0
}

.thkm456-list {
    list-style: none;
    margin: 15px 0 0;
    padding: 10px 1px 1px 20px;
    border-top: 1px solid #eee
}

.thkm456-list li+li {
    margin-top: 14px;
    border-top: 1px solid #eee;
    padding-top: 14px
}

.thkm456-helpgrid a,.thkm456-list li a {
    display: flex;
    align-items: center;
    color: #444;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    user-select: none
}

.thkm456-list li a {
    transition: color .3s ease;
    border-radius: 8px;
    position: relative;
    padding: 1px 24px 1px 1px
}

.thkm456-list li a::after {
    content: ">";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-weight: 300;
    font-size: 25px;
    pointer-events: none
}

.thkm456-list li a i {
    color: #299e44!important;
    font-size: 25px;
    margin-right: 14px;
    min-width: 24px;
    text-align: center;
    line-height: 1
}

.thkm456-list li a span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.thkm456-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 25px 0
}

.thkm456-list-title {
    font-weight: 500;
    font-size: 16px;
    margin: 25px 10px 25px 20px;
    color: #737373;
    user-select: none;
    font-family: "Poppins",sans-serif
}

.thkm456-helpgrid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 12px;
    padding: 0 20px 25px;
    user-select: none
}

.thkm456-helpgrid a {
    border-radius: 12px;
    padding: 8px 14px;
    transition: color .3s ease,background .3s ease
}

.thkm456-helpgrid a i {
    color: #299e44!important;
    margin-right: 12px;
    font-size: 22px;
    min-width: 20px;
    text-align: center
}

.thkm456-helpgrid a:focus,.thkm456-helpgrid a:hover {
    color: #299e44;
    background: rgba(54,178,87,.13);
    outline: 0
}

.thkm456-menu::-webkit-scrollbar {
    width: 8px
}

.thkm456-menu::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 10px
}

.thkm456-menu::-webkit-scrollbar-thumb {
    background: #299e44;
    border-radius: 10px
}

@media (max-width:400px) {
    .thkm456-menu {
        max-width: 95vw;
        margin: 30px 1px 10px
    }
}

.guvenli-main {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 1%
}

.guvenli-main i {
    margin-bottom: 12px;
    color: #394348
}

.guvenli-main .guvenli-text .guvenli-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #394348;
    margin-bottom: 6px
}

.guvenli-main .guvenli-text .guvenli-sub {
    display: block;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5
}

@media (max-width:768px) {
    .guvenli-main {
        width: 100%;
        margin-bottom: 20px
    }

    .guvenli-main .guvenli-text .guvenli-title {
        display: block;
        font-weight: 600;
        font-size: 12px;
        color: #394348;
        margin-bottom: 6px
    }

    .guvenli-main .guvenli-text .guvenli-sub {
        display: block;
        font-size: 10px;
        color: #4b5563;
        line-height: 1.5;
        font-weight: 500
    }
}

@media (max-width:480px) {
    .guvenli-main {
        width: 100%;
        margin-bottom: 20px
    }
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
    color: #707070
}

.urun-ozellikleri-blok {
    margin: 32px 0;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px
}

.urun-ozellikleri-blok:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.06)
}

.urun-ozellikleri-baslik {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 6px;
    letter-spacing: .2px
}

.urun-ozellikleri-blok .table-bordered {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden
}

.urun-ozellikleri-blok .table-bordered th {
    background-color: #fafafa;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 14px
}

.urun-ozellikleri-blok .table-bordered td {
    background-color: #fff;
    color: #555;
    font-size: 15px;
    padding: 10px 14px;
    border: 1px solid #e6e6e6
}

.urun-ozellikleri-blok .table-bordered tr:hover td {
    background-color: #f9f9f9
}

@media (max-width:768px) {
    .urun-ozellikleri-blok {
        margin: 18px 0;
        padding: 12px 14px;
        border-radius: 5px;
        box-shadow: none
    }

    .urun-ozellikleri-baslik {
        font-size: 15px;
        margin-bottom: 10px;
        padding-bottom: 3px
    }

    .urun-ozellikleri-blok .table-bordered {
        font-size: 13px;
        border: 1px solid #e6e6e6;
        width: 100%;
        border-collapse: collapse
    }

    .urun-ozellikleri-blok .table-bordered td,.urun-ozellikleri-blok .table-bordered th {
        padding: 6px 8px;
        word-break: break-word
    }

    .urun-ozellikleri-blok table {
        width: 100%!important;
        table-layout: fixed
    }
}

.urun-detay-sekmeler199 .p-g-t-nav .nav .nav-item {
    display: flex;
    margin: 2px!important;
    text-align: center
}

.urun-detay-sekmeler199 .p-g-t-nav {
    background: #fff;
    border: 1px solid #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.05);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.urun-detay-sekmeler199 .p-g-t-nav .nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%
}

.urun-detay-sekmeler199 .p-g-t-nav .nav-item {
    flex: 1;
    text-align: center
}

.urun-detay-sekmeler199 .p-g-t-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 5px;
    font-size: 14px;
    color: #ff6000;
    border: 0;
    border-bottom: 3px solid transparent;
    transition: all .25s ease-in-out
}

#myButton,.urun-detay-sekmeler199 .p-g-t-nav .nav-link:hover {
    color: #000
}

.urun-detay-sekmeler199 .p-g-t-nav .nav-link.active {
    color: #000;
    font-weight: 600;
    border-bottom: 5px solid #ff6000;
    background-color: #fff
}

.product-comment-list-v2 .score .stars .star i {
    left: 0;
    position: absolute;
    top: 0;
    font-size: 30px
}

.shipping-countdown {
    margin: 20px auto;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    text-align: center
}

.shipping-message {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333
}

.shipping-message b {
    color: #e53935;
    font-weight: 600
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px
}

.time-block {
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 58px;
    text-align: center
}

.time-block span {
    color: #111;
    display: block;
    font-size: 20px;
    font-weight: 700
}

.time-block small {
    display: block;
    margin-top: 2px;
    color: #777;
    letter-spacing: .3px;
    font-size: 12px;
    text-transform: uppercase
}



.brand-name-urun-marka-adi {
    color: #3b3b3b
}

#myButton {
    border: 0!important;
    background: transparent !important;
    padding: 0
}

#myButton:focus,#product-comment-location:focus {
    outline: 0!important;
    border: 0!important;
    background: 0 0!important
}

#product-comment-location {
    border: 0!important;
    background: transparent !important;
    color: #000;
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center
}

#product-comment-location span {
    border-right: 0 solid #a1a1a1;
    padding-right: 0
}

#product-comment-location span:last-child {
    border: 0
}

#product-comment-location .com-btn {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-top: -8px;
    margin-left: 3px
}

#product-comment-location .com-btn img {
    border-radius: 0;
    margin-top: -2px
}

.proof-message,.social-proof-box {
    position: relative;
    display: flex;
    align-items: center
}

.proof-message {
    position: absolute;
    gap: 10px;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .8s ease;
    font-size: 14.5px;
    color: #333
}

.proof-message.active {
    opacity: 1;
    position: relative
}

.proof-message i {
    font-size: 18px;
    color: #f27a1a;
    flex-shrink: 0
}

.proof-message strong {
    color: #f27a1a;
    font-weight: 600
}

@media (max-width:400px) {
    .social-proof-box {
        height: auto
    }

    .proof-message {
        line-height: 1.4;
        color: #707070;
        font-size: 10px;
        font-weight: 500;
        gap: 4px
    }
}

@media (max-width:768px) {
    .social-proof-box {
        height: auto
    }

    .product-comment-list-v2 .score .total {
        font-size: 25px;
        font-weight: 600
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
        font-size: 13px;
        font-weight: 600
    }

    .product-comment-list-v2 .score .count {
        color: #666;
        font-size: 13px;
        font-weight: 500;
        margin-top: 25px;
        padding-left: 4px
    }

    .rating-average .mobil-combtn {
        display: flex!important
    }

    .proof-message {
        line-height: 1.4;
        color: #707070;
        font-size: 14px;
        gap: 5px;
        font-weight: 500
    }

    .proof-message i {
        font-size: 16px;
        color: #f27a1a;
        flex-shrink: 0
    }
}

.product-price-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box
}

.product-price-group .discount .rate {
        font-size: 16px;
    padding-bottom: 5px;
}

.product-price-group .prices .list-price {
    color: #9CA3AF;
    font-size: 17px;
    font-weight: 600;
    text-decoration: line-through;
    margin-top: -3px
}

.product-price-group .prices .sale-price {
    color: #656565;
    font-size: 36px;
    font-weight: 700;
    margin-top: -9px;
    display: inline-block;
    transform: scaleX(0.95) scaleY(1.08);
    transform-origin: left center;
}


.product-price-group .discount {
    align-items: center;
    background: #f56060;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    height: 55px;
    justify-content: center;
    margin-right: 0;
    text-align: center;
    width: 60px;
    border-radius: 6px;
    line-height: 1;
    padding: 6px 6px;
}



.product-rate-wrapper {
    padding: 0 0 0 18px;
    border-left: 1px solid #e0e0e0
}

.product-price-group .prices {
    padding: 0 10px 0 0
}

.product-rate {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.taksit-top {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 600;
    color: #ff6000;
    font-size: 16px
    margin-top: -2px;
}

.taksit-top i {
    margin-right: 2px;
    vertical-align: middle
}

.taksit-amount {
    line-height: 1.2
}

.taksit-den {
    font-size: 14px
}

.installment-info,.taksit-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a1a1a1;
    font-size: 14px;
    font-weight: 400;
    margin-top: -8px
}

.taksit-text i,.taksit-top i {
    color: #f27a1a;
    font-size: 14px
}

.installment-info {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-top: -6px
}

.installment-info i {
    color: #068a48;
    font-size: 16px
}

@media (max-width:480px) {
    .product-rate-wrapper {
        max-width: 100%;
        padding: 1px
    }

    .product-price-group .discount {
        font-size: 11px;
        font-weight: 400;
        height: 55px;
        width: 50px
    }

    .product-price-group .prices .sale-price {
        font-size: 18px;
        font-weight: 500
    }

    .product-price-group {
        gap: 5px;
        padding: 10px 0 1px
    }

    .taksit-top {
        font-size: 14px
    }

    .installment-info i,.taksit-text i,.taksit-top i {
        font-size: 12px
    }

    .installment-info,.taksit-text {
        font-size: 12px;
        margin-top: -7px
    }
}

.satis-adet .color-satis-adet {
    align-items: center
}

.product-price-group {
    color: #333;
    font-weight: 400;
    gap: 10px;
    padding: 15px 0 1px
}

@media (max-width:768px) {
    .mobilsayac .pattern-group .p-g-mod {
        margin-bottom: 10px;
        margin-top: 1px
    }

    .deal-wrapper-section .pattern-group-body {
        border-radius: 0;
        border: 0;
        background: #fff;
        padding: 0
    }

    .product-price-group .discount .rate {
        font-size: 14px;
        font-weight: 500
    }

    .product-price-group .prices .list-price {
        color: #999;
        font-size: 16px;
        font-weight: 500;
        margin-top: -1px
    }

    .product-price-group .prices .sale-price {
        font-size: 23px;
        font-weight: 700
    }

    .installment-info {
        margin-top: -7px;
        font-size: 13px;
        font-weight: 500
    }

    .taksit-top {
        font-size: 16px
    }

    .taksit-text {
        font-size: 12px;
        margin-top: -7px
    }

    .product-rate-wrapper {
        max-width: 100%;
        padding: 1px 1px 1px 13px;
        border-left: 1px solid #e0e0e0
    }

    .product-price-group .discount {
        font-size: 11px;
        font-weight: 400;
        height: 50px;
        width: 50px
    }

    .product-price-group .prices {
        padding: 1px 7px 1px 1px
    }

    .product-price-group {
        gap: 5px;
        padding: 10px 0 1px
    }
}

.deal-wrapper-section {
    padding-bottom: 20px
}

.deal-wrapper-section1 .p-g-mod.p-g-mod-t-1 {
    margin-bottom: 0!important
}

.deal-wrapper-section .pattern-group-body {
    border-radius: 20px;
    border: 2px solid #f4f4f4;
    background: #fff;
    padding: 0;
    min-height: 410px
}

.deal-box,.deal-wrapper {
    align-items: center;
    justify-content: center
}

.deal-wrapper {
    height: 100%;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg,#c62828 0,#f83738 40%,rgba(248,55,56,0) 90%);
    border-radius: 20px 0 0 20px;
    position: relative
}

.deal-box {
    color: #fff;
    font-weight: 600;
    letter-spacing: .3px;
    text-align: center
}

.deal-timer {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 15px;
    color: #ff5a5a;
    border-width: 1.5px;
    border-style: solid;
    border-color: #f83738
}

.time-block {
    flex: 1
}

.deal-text h2 {
    font-size: 18px;
    margin: 10px 0
}

.deal-text p {
    font-size: 12px;
    margin: 5px 0 15px;
    font-weight: 500
}

.deal-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    color: #ff5a5a;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s
}

.deal-btn:hover {
    background: #ffdcdc
}

@media (max-width:991px) {
    .categories .mms-12345 a-67890:last-child .items-11223 img-33445,.categories .mms-12345 a:last-child .items-11223 img {
        width: 30px
    }

    .deal-wrapper-section .pattern-group-body {
        border-radius: 0;
        border: 0;
        background: #fff;
        padding: 0
    }

    .deal-wrapper {
        padding: 30px;
        align-items: stretch;
        background: linear-gradient(90deg,#f83738 .31%,rgb(248 55 56/49%) 98.86%);
        border-radius: 20px
    }

    .deal-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .categories .mms-12345 a .items-11223,.categories .mms-12345 a-67890 .items-11223 {
        display: flex;
        padding: 10px 0;
        align-items: center;
        justify-content: center;
        gap: 10px;
        line-height: 18px
    }

    .categories .mms a,.categories .mms-12345 a,.categories .mms-12345 a-67890 {
        width: 100%;
        flex: 0 0 50%
    }

    .categories .mms,.categories .mms-12345 {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        border-bottom: 1px solid #e2e2e2
    }

    .categories .mms-12345 a-67890:last-child .items-11223,.categories .mms-12345 a:last-child .items-11223 {
        background: var(--dsdsdssd, linear-gradient(180deg, #7623DB 0%, #3F1375 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 14px;
        font-weight: 600
    }

    header.mobile {
        display: block;
        position: relative
    }
}

@media (min-width:768px) and (max-width:990px) {
    .modal-inside2-12345 {
        top: 33px
    }

    .deal-wrapper {
        margin-top: -7px
    }

    div#shareAge2-67890 {
        right: -20.6%
    }

    .topbar-mobile-visible-54321 .d-sm-none-11223 {
        display: block!important
    }

    .topbar-mobile-98765 {
        top: -3px
    }
}

.topbar-mobile-98765 {
    position: absolute;
    top: -35px;
    z-index: 9
}

.mobile .dinamik-slide-11234 a img {
    width: 100vh;
    border-radius: 0;
    height: 100%
}

@media (max-width:768px) {
    .flash-box-unique {
        font-size: 12px;
        position: relative;
        overflow: hidden;
        padding: 14px 11px
    }

    .flash-left-unique {
        position: absolute;
        right: -4%;
        bottom: -16%;
        z-index: 1;
        opacity: .3
    }

    .flash-left-unique img {
        width: 50px;
        height: auto
    }

    .flash-right-unique {
        position: relative;
        z-index: 2
    }
}

.flash-box-unique {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid #f83738;
    background: rgba(248,55,56,.1);
    color: #f83738;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 10px
}

.flash-box-left-unique {
    flex-shrink: 0
}

.flash-box-right-unique {
    flex: 1
}

.highlight1991 {
    color: #f83738;
    font-weight: 700;
    margin-right: 4px;
    margin-left: 4px
}

@media (max-width:1200px) {
    .product-profile-1 .carousel .carousel-indicators {
        max-height: 480px
    }
}

@media (max-width:992px) {
    .product-profile-1 .carousel .carousel-indicators {
        max-height: 400px
    }
}

.product-profile-1 .carousel .carousel-indicators {
    position: absolute;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-height: 700px;
    overflow-y: auto;
    margin: 0;
 
    
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar {
    width: 4px
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 3px
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.15);
    border-radius: 3px;
    transition: background-color .3s ease
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.25)
}

.product-profile-1 .carousel .carousel-indicators li {
    flex: 0 0 auto;
    width: 100%;
    max-width: 120px;
    height: auto;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 6px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s ease,box-shadow .2s ease
}

.product-profile-1 .carousel .carousel-indicators li:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(0,0,0,.08)
}

.product-profile-1 .carousel .carousel-indicators li img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px
}

.carousel-indicators li {
    opacity: 1
}

#kargoTimerPro,.payment-trust-pro1 h3 {
    display: flex;
    align-items: center;
    gap: 8px
}

#kargoTimerPro {
    justify-content: space-between;
    box-sizing: border-box
}

#kargoTimerLeft {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0
}

.kargoTimerBox {
    display: flex;
    flex-direction: column;
    align-items: center
}

#kargoTimerRight,.kargoTimerBox span {
    font-weight: 600;
    border-radius: 6px;
    text-align: center
}

.kargoTimerBox span {
    background: #f7f7f7;
    color: #222;
    font-size: 1.1rem;
    padding: 8px;
    box-shadow: inset 0-2px 4px rgba(0,0,0,.08)
}

.kargoTimerSeparator {
    font-weight: 700;
    color: #222;
    font-size: 1.2rem
}

.kargoTimerLabel {
    font-size: .65rem;
    color: #666;
    margin-top: 2px
}

.kargoTimerAltMesaj {
    font-size: .75rem;
    color: #888;
    margin-left: 8px;
    white-space: nowrap
}

#kargoTimerRight {
    background: #f5a261;
    color: #fff;
    font-size: .9rem;
    padding: 12px 14px;
    line-height: 1.2em;
    min-width: 90px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.08)
}

@media (max-width:768px) {
    #kargoTimerPro {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px
    }

    #kargoTimerLeft {
        gap: 8px
    }

    .kargoTimerBox span {
        font-size: 1.1rem;
        padding: 6px 10px;
        min-width: 44px
    }

    #kargoTimerRight {
        font-size: .85rem;
        padding: 8px 12px;
        min-width: 85px
    }

    .kargoTimerAltMesaj {
        font-size: .8rem
    }
}

.teslimatTooltip {
    position: relative;
    cursor: help;
    display: inline-block;
    font-weight: 500;
    font-size: 14px
}

@media (max-width:600px) {
    .new-cargo-class {
        display: none
    }
}

.new-cargo-class #kargoTimerLeft,.new-cargo-class #kargoTimerPro {
    gap: 5px
}

.new-cargo-class #kargoTimerRight {
    padding: 8px 14px;
    min-width: 90px;
    background: #f7f7f7;
    color: #222
}

.teslimatChip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f27a1a;
    font-weight: 600;
    font-size: .95rem;
    margin-left: 12px;
    white-space: nowrap
}

.teslimatTooltip .tooltipText {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0,0,0,.75);
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: .7rem;
    line-height: 1.2em;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .2s;
    word-wrap: break-word
}

.teslimatTooltip:hover .tooltipText {
    visibility: visible;
    opacity: 1
}

.payment-form-methods .nav-tabs .nav-item {
    margin: 0 4px
}

/*========================================
  ÖDEME SAYFASI – PROFESYONEL YENİ TASARIM
  Modern Green Theme – Soft UI (Rootsuz)
=========================================*/

/*==============================
  GÜVEN KUTUSU
==============================*/
.payment-trust-pro1 {
    background: #ffffff;

}

.payment-trust-pro1 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #10b981; /* modern yeşil */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-trust-pro1 h3 i {
    color: #10b981;
    font-size: 20px;
}

.payment-trust-pro1 .desc-pro1 {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

/*==============================
  ÖDEME YÖNTEM LİSTESİ
==============================*/
.methods-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.methods-list li {
    font-size: 14px;
    color: #333;
    padding: 10px 14px;
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .25s ease;
    background: #fff;
}

.methods-list li:last-child {
    border-bottom: none;
}

.methods-list li i {
    font-size: 16px;
    color: #10b981;
    min-width: 22px;
}

/* Hover efekti – modern yeşil */
.methods-list li:hover {
    background: #e8fdf5;
    color: #222;
}

/*==============================
  YEŞİL BİLGİ NOTU (note-pro1)
==============================*/
.note-pro1 {
    font-size: 14px;
    border-left: 4px solid #10b981;
    padding: 14px 15px;
    border-radius: 10px;
    line-height: 1.55;
    background: #e8fdf5;
    color: #333;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.note-pro1 i {
    color: #10b981;
    margin-top: 2px;
}

/*==============================
  TURUNCU UYARI NOTU (note-pro19)
==============================*/
.note-pro19 {
    font-size: 14px;
    border-left: 4px solid #ffa500;
    padding: 14px 15px;
    border-radius: 10px;
    line-height: 1.55;
    background: #fff7e6;
    color: #8a4b00;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.note-pro19 i {
    color: #ffa500;
    margin-top: 2px;
}

.methods-list li:hover,
.note-pro19:hover {
    background: #fff3d6;
}

/*==============================
  ÖDEME TABS (KART / KAPIDA)
==============================*/
.payment-form-group-1 .nav-tabs {
    display: flex;
    justify-content: space-between;
    border: 0;
    margin: 0;
    padding: 0;
}

.payment-form-group-1 .nav-item {
    flex: 1;
    margin: 0;
}

.payment-form-group-1 .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    background: #f6f7f9;
    border: 1px solid #e6e2df;
    border-radius: 0;
    color: #333;
    transition: all .25s ease;
    width: 100%;
}

.payment-form-group-1 .nav-item:first-child .nav-link {
    border-radius: 8px 0 0 8px;
}

.payment-form-group-1 .nav-item:last-child .nav-link {
    border-radius: 0 8px 8px 0;
}

/* Hover */
.payment-form-group-1 .nav-tabs .nav-link:hover {
    background: #ffffff;
    border-color: #d1d1d1;
    color: #111;
}

/* Aktif olan */
.payment-form-group-1 .nav-tabs .nav-link.active {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 3px 8px rgba(16,185,129,0.3);
}

.payment-form-group-1 .nav-tabs .nav-link i {
    font-size: 16px;
    opacity: .8;
}

.payment-form-group-1 .nav-tabs .nav-link.active i {
    color: #fff;
    opacity: 1;
}

/*==============================
  MOBİL
==============================*/
@media (max-width: 768px) {
    .payment-trust-pro1 h3 {
        font-size: 18px;
    }

    .methods-list li {
        font-size: 13px;
        padding: 8px 10px;
    }

    .note-pro1,
    .note-pro19 {
        font-size: 13px;
        padding: 12px 12px;
    }

    .payment-form-group-1 .nav-tabs .nav-link {
        font-size: 13px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .note-pro1,
    .note-pro19 {
        flex-direction: column;
        align-items: flex-start;
    }

    .note-pro1 i,
    .note-pro19 i {
        margin-bottom: 6px;
    }
}


.d-flex {
    display: flex;
    justify-content: center;
    align-items: center
}

.payment-logos-874 {
    text-align: center;
    padding: 30px 0 5px;
    background-color: #fff
}

.payment-logos-874 img {
    max-width: 95%;
    height: auto
}

@media (max-width:768px) {
    .payment-logos-874 {
        padding: 10px 0
    }

    .payment-logos-874 img {
        max-width: 100%
    }
}

.scroller--line.scroller--move {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 60s;
    animation-play-state: running;
    width: max-content;
    will-change: transform,width;
    animation-name: scroll-left
}

.banner-motion-zone {
    margin-top: -20px;
    margin-bottom: 25px
}

.banner-motion-wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    position: relative;
    gap: 10px;
    width: 100%
}

.scroll-items-inner {
    color: #656c67;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content
}

.scroll-items-inner img {
    width: 15px;
    height: 15px
}

.banner-motion-wrap:hover .scroller--move {
    animation-play-state: paused
}

.discount-success {
    color: #fff;
    font-size: 10px;
    background: linear-gradient(90deg,#f9e4b7 0,#e8c06c 100%);
    padding: 3px 8px;
    border-radius: 5px;
    margin: 10px 0 10px 10px;
    text-align: center;
    font-weight: 500;
    display: inline-block
}

.shopping-cart-1 .cart-product-row:hover {
    background-color: #fff!important
}

@media (min-width:768px) {
    .masaustu-goster1 {
        display: block
    }
}

@media (max-width:767px) {
    .masaustu-goster1 {
        display: none
    }
}

@media (min-width:768px) {
    .masaustu-goster4 {
        display: block
    }
}

@media (max-width:767px) {
    .masaustu-goster4 {
        display: none;
        padding-bottom: -40px
    }
}

@media (min-width:768px) {
    .masaustu-gizle4 {
        display: none
    }
}

@media (max-width:767px) {
    .masaustu-gizle4 {
        display: block
    }
}



.video {
    position: relative;
    display: inline-block
}

.video video {
    width: 100%;
    height: auto;
    display: block
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: 0 0;
    border: 0;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    opacity: .8;
    transition: .3s
}

.video-play-btn:hover {
    opacity: 1;
    color: red
}

.profil-collection-btn {
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2
}

.profil-collection-btn span,header.desktop .h-contact .info .item:hover {
    color: #000
}

.custom-products-header {
    display: flex;
    align-items: center;
    padding: 19px 10px 10px
}

.custom-products-header .custom-icon {
    font-size: 20px;
    color: #333;
    margin-right: 10px
}

.custom-header-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0
}

@media (max-width:767px) {
    .custom-header-text {
        font-size: 18px
    }

    .custom-products-header .custom-icon {
        font-size: 20px
    }
}

.kargo-bilgi-container {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: #fff
}

.kargo-bilgi-container .progress-bar-p {
    font-size: 14px;
    color: #a5a3a3;
    margin-bottom: -4px
}

.progress-bar-container {
    border-radius: 20px;
    height: 20px;
    width: 100%;
    margin-top: 10px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    background-color: #f4f4f4
}

.progress-bar {
    height: 100%;
    border-radius: 20px;
    transition: width .4s ease-in-out
}

.kargo-bilgi-mesaj {
    position: absolute;
    width: 100%;
    top: 1px;
    left: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 20px
}

@media (max-width:768px) {
    .kargo-bilgi-container {
        font-size: 14px;
        padding: 10px
    }

    .progress-bar-container {
        height: 18px
    }

    .progress-bar {
        height: 100%
    }

    .kargo-bilgi-mesaj {
        font-size: 12px;
        line-height: 16px
    }
}

@media (max-width:480px) {
    .kargo-bilgi-container {
        font-size: 13px;
        padding: 8px
    }

    .progress-bar-container {
        height: 16px
    }

    .progress-bar {
        height: 100%
    }

    .kargo-bilgi-mesaj {
        font-size: 10px;
        line-height: 14px
    }

    .kargo-bilgi-container .progress-bar-p {
        font-size: 12px;
        color: #a5a3a3;
        margin-bottom: -3px
    }
}

.btn-remove {
    background: linear-gradient(90deg,#fef4eb 0,#fff0f4 100%);
    border: 0;
    padding: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 5px
}

.btn-remove i.fa-trash-alt {
    color: #f73637;
    font-size: 20px;
    margin-top: 6px
}

@media (max-width:768px) {
    .btn-remove {
        padding: 8px 16px;
        font-size: 14px
    }

    .btn-remove i.fa-trash-alt {
        color: #f73637;
        font-size: 18px
    }

    .shopping-cart-1 .product-quantity {
        align-items: flex-start;
        display: flex;
        justify-content: flex-end;
        margin-right: -35px;
        gap: 5px
    }
}

.home-headline19 {
    padding-top: 20px;
    padding-bottom: 20px
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out
}

.logosss {
    width: 60vw;
    height: auto;
    max-width: 600px
}

body.loaded .loader-container {
    opacity: 0
}

@media (min-width:992px) {
    .qk-app-discount-counter .dc-contents {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: scale(1);
        transform-origin: center center;
        margin: 30px
    }
}

.sozleme-yazisi-9865 textarea {
    width: 100%;
    min-height: 100px;
    max-height: 400px;
    padding: 10px;
    box-sizing: border-box;
    resize: vertical;
    overflow: auto;
    border: 1px solid #ccc;
    border-radius: 4px
}


.card-list-product .card-list-product-inner .c-l-p-i-link {
    align-items: flex-start;
    color: #333;
    display: flex;
    font-weight: 400;
    justify-content: flex-start;
    flex-wrap: wrap
}

.card-list-product .card-list-product-inner .c-l-p-i-link>:last-child {
    width: 100%
}

.sepet-indirim-mesaji {
    background-color: #fff1e5;
    text-align: center;
    margin-bottom: 15px
}

.sepet-indirim-mesaji.show {
    animation: fadeIn9d .4s ease-in-out
}

@media (max-width:768px) {
    .sepet-indirim-mesaji {
        font-size: 13px;
        padding: 10px;
        border-radius: 4px
    }

    .show-category5,.show-category6 {
        top: 10px!important
    }
}


.payment-form-group-1 .nav-tabs {
    background: #fff;
    border-radius: 6px;
    flex-wrap: wrap
}



.shipment-methods .method .name .image {
    align-items: center;
    background: 0 0;
    border: 0;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 5px;
    width: 90px
}

.payment-methods-container {
    background-color: #fff;
    padding: 30px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    font-family: "Poppins",sans-serif
}

.payment-methods-container1 .payment-security1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px
}

.payment-methods-container1 .security-icon1 {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    opacity: .8
}

.payment-methods-container1 .payment-message1 {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 600px
}

.payment-methods-container1 .payment-message1 strong {
    font-size: 18px;
    color: #3cb371
}

.payment-methods-container1 .payment-methods-list1 {
    margin-top: 30px
}

.payment-methods-container1 .payment-methods-list1 h31 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600
}

.payment-methods-container1 .methods1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start
}

.payment-methods-container1 .method1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 200px
}

.payment-methods-container1 .method1 span {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

.payment-methods-container1 .learn-more1 {
    margin-top: 20px;
    font-size: 14px;
    color: #3cb371;
    text-align: center
}

.payment-methods-container1 .learn-more1 a {
    color: #3cb371;
    text-decoration: none;
    margin: 0 10px
}

.payment-methods-container1 .learn-more1 a:hover {
    text-decoration: underline
}

.shipment-methods .method:last-child {
    border-bottom: none!important;
    overflow: hidden!important;
    border-bottom: 1px solid rgba(0,0,0,.07)!important
}

.shipment-methods .method .name .image img {
    max-height: 40px;
    max-width: 80px
}

.payment-form-group-1 .secure-payment-message {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.05)
}

.payment-form-group-1.secure-payment-message img {
    width: 40px;
    height: 40px;
    margin-right: 15px
}

.payment-form-group-1 .message-text {
    font-size: 12px;
    color: #1f2d3d;
    padding-left: 15px
}

.payment-form-group-1 .message-text strong {
    color: #2c7a7b;
    font-weight: 600;
    font-size: 12px
}

.cc-installments .head {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fbfd;
    border-bottom: 1px solid #d6e2f0;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    padding: 10px 14px;
    border-radius: 6px 6px 0 0;
    text-transform: none;
    letter-spacing: .3px
}

.cc-installments {
    background-color: #f9fbfd;
    border: 1px solid #d6e2f0;
    border-radius: 8px;
    padding: 12px
}

.cc-installments .method {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d6e2f0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 6px;
    transition: all .2s ease-in-out
}

.cc-installments .method:hover {
    background: #f0f6fc
}

.cc-installments .method .name {
    display: flex;
    align-items: center;
    flex: 3;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500
}

.btn-lightsss,.btn-lightsss:hover {
    display: inline-block;
    border: 2px solid #f27a1a;
    color: #f27a1a;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff
}

.btn-lightsss:hover {
    color: #fff;
    background-color: #f27a1a
}

.container1 {
    padding: 20px;
    background: #fff;
    border: 1px solid #e7ebf5;
    border-radius: 10px;
    margin-bottom: 15px
}

.container1 h1 {
    text-align: center;
    color: #4dc762;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400
}

.container1_section1 {
    margin-bottom: 10px;
    background-color: #fff
}

.container1_section1 h2 {
    color: #4dc762;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center
}

.container1_section1 h2 i,.etbis-section h2 i {
    margin-right: 8px;
    color: #4dc762
}

@media (max-width:1366px) {
    .container1_section1 p,.container1_section1 ul,.etbis-text p {
        font-size: 12px
    }
}

.container1_section1 p,.container1_section1 ul,.etbis-text p {
    color: #575757;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px
}

.container1_section1 ul {
    padding-left: 20px;
    list-style-type: none
}

.container1_section1 ul li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 20px
}

.container1_section1 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4dc762;
    font-weight: 700
}

.container1_button1 {
    display: inline-block;
    background-color: #4dc762;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    border-radius: 30px;
    text-align: center;
    transition: background-color .3s ease
}

.container1_button1:hover {
    background-color: #43b15c
}

.container1_footer1 {
    text-align: center;
    font-size: 10px;
    margin-top: 20px;
    color: #888
}

.etbis-section,.payment-cart-summary-1 table tfoot tr {
    display: flex;
    justify-content: space-between;
    background-color: #fff
}

.etbis-section {
    border-radius: 10px;
    align-items: center;
    flex-wrap: wrap
}

@media (max-width:1366px) {
    .etbis-section h2 {
        margin-bottom: 3px;
        font-size: 14px
    }
}

.etbis-section h2 {
    display: flex;
    align-items: center;
    color: #4dc762;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 4px
}

.etbis-text {
    flex: 1 1 60%
}

.etbis-image {
    flex-shrink: 0
}

.etbis-image img {
    max-width: 60px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    padding: 5px
}

.etbis-image img:hover {
    transform: scale(2.05)
}

.cc-installments .method .name .info {
    font-size: 12px;
    color: #7a8a9a
}

.cc-installments .method .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px
}

.cc-installments .method .price-1,.cc-installments .method .price-2 {
    flex: 1;
    padding-right: 5px;
    text-align: center;
    font-weight: 500;
    color: #34495e
}

.cc-installments .method.active {
    background: #f0f6fc;
    color: #0056b3;
    font-weight: 600;
    border: 1px solid #e7ebf5
}

.payment-cart-summary-1 {
    background: #fff;
    border: 1px solid #e7ebf5;
    border-radius: 10px;
    padding: 20px
}

.payment-cart-summary-1 .d12fg154dfg {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -.03em;
    color: #333
}

.kargo-kampanya-sepet-pc {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e7ebf5
}

.kargo-kampanya-sepet-pc .kampanya-kutu {
    text-align: center;
    padding: 20px 10px 20px 15px
}

.kargo-kampanya-sepet-pc .kampanya-baslik {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px
}

.kargo-kampanya-sepet-pc .kampanya-img {
    text-align: right;
    height: 25px
}

.kargo-kampanya-sepet-pc .kampanya-aciklama {
    font-size: 14px;
    color: #555;
    margin-top: 10px
}

.kargo-kampanya-sepet-pc .magaza-adi {
    font-weight: 700;
    color: #000
}

.kargo-kampanya-sepet-pc .eksik-tutar {
    color: #d9534f;
    font-weight: 700
}

.kargo-kampanya-sepet-pc .tebrikler {
    color: #28a745;
    font-weight: 700
}

.payment-cart-summary-1 .tilbe-sub {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -.03em;
    color: #a1a1a1;
    margin-top: 8px;
    margin-bottom: 11px;
    text-align: center
}

.payment-cart-summary-1 .summary span {
    padding-top: -10px
}

@media (max-width:768px) {
    .pattern-group-body .card-product .card-product-inner .free-cargo-badge,.pattern-group-body .card-product .card-product-inner .hizli-teslimat {
        display: none!important
    }
}

.shopping-cart-1 .product-quantity {
    display: flex;
    align-items: center;
    gap: 10px
}

.shopping-cart-1 .product-quantity input {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    outline: 0;
    padding: 0;
    background-color: transparent;
    border: 1px solid #f5f5f5;
    border-radius: 6px
}

.shopping-cart-1 .product-quantity .btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent
}

@media (max-width:768px) {
    .shopping-cart-1 .product-quantity .btn,.shopping-cart-1 .product-quantity input {
        width: 25px;
        height: 25px
    }
}

.payment-cart-summary-1 table tfoot tr th,.payment-page-bodysection .p-g-b-c-1 .p-g-b-c-inner .payment-cart-summary-1 .table tfoot tr th {
    border: 0!important
}

.payment-cart-summary-1 h5 {
    color: #121212;
    font-size: 14px;
    letter-spacing: -.28px;
    font-weight: 600;
    margin-bottom: 3px
}

.payment-cart-summary-1 span9 {
    font-size: 14px;
    color: #0a7608;
    font-weight: 400
}

.payment-cart-summary-1 .span19 {
    font-size: 14px;
    color: #212529;
    font-weight: 500
}

.payment-cart-summary-1 .span18 {
    font-size: 12px;
    color: #31ab45;
    font-weight: 500
}

.payment-cart-summary-1 .span17 {
    font-size: 11px;
    color: #a1a1a1;
    font-weight: 500
}

.payment-cart-summary-1 .span16 {
    color: #31ab45
}

.payment-cart-summary-1 table tfoot tr {
    flex-direction: row;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #e7ebf5;
    font-weight: 400
}

.readmore {
    margin: 40px 0
}

.readmore .p-g-mod-base-content {
    border: 0
}

.readmore .readmore-text {
    max-height: 100px;
    overflow: hidden
}

.readmore .readmore-text.show {
    max-height: 100%!important
}

.readmore .p-g-mod-t-1 {
    display: flex;
    justify-content: center
}

.payment-form-group-1 {
    background: #fff
}

.payment-form-group-1 .form-group input,.payment-form-group-1 .form-group select,.payment-form-group-1 .form-group textarea {
    letter-spacing: -.28px;
    width: 100%;
    height: 52px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    outline: 0;
    transition: border .2s ease,box-shadow .2s ease,background-color .2s ease
}

.payment-form-group-1 .gift-pack-price {
    color: #31ab45;
    font-weight: 500
}

.payment-form-group-1 .hediye-aciklama54 {
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    padding: 1px 15px 5px
}

.payment-form-group-1 .form-group textarea {
    min-height: 150px;
    resize: vertical
}


.payment-form-group-1 .hediye-aciklama54 input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    cursor: pointer;
    transition: transform .2s;
    margin-bottom: 5px;
    padding-right: 20px
}

.payment-form-group-1 .hediye-aciklama54 input[type=checkbox]:hover {
    transform: scale(1.1)
}

.payment-form-group-1 .hediye-aciklama54 label {
    font-size: 14px;
    color: #374151;
    cursor: pointer
}

.payment-form-group-1 .form-group input::placeholder,.payment-form-group-1 .form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400
}

.invoice-info-description {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 18px;
    background: 0 0
}

.kurumsal-etiket .kurumsal-span {
    text-align: center;
    font-size: 16px
}

.kurumsal-etiket {
    position: relative;
    border-bottom: 1px dotted #fff
}

.kurumsal-etiket .kumtext {
    visibility: hidden;
    width: 400px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    border-color: #4a90e2;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 0;
    margin-left: -20px
}

.kurumsal-etiket .kumtext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: #4a90e2 transparent transparent
}

.kurumsal-etiket:hover .kumtext {
    visibility: visible
}

.kurumsal-etiket,.readmore .more {
    display: inline-block;
    font-size: 14px;
    text-align: center
}

.readmore .more {
    border-radius: 5px;
    color: #000;
    font-weight: 400;
    padding: 10px 20px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px solid #000
}

.product-badges-alert {
    border: 1px solid #f4f4f4;
    border-radius: 10px;
    padding: 25px;
    background: #ff4040;
    color: #fff;
    align-content: center;
    margin-top: 20px;
    font-size: 14px
}

.overlay .spin,a {
    color: var(--main-color)
}

a:hover {
    text-decoration: none;
    color: var(--main-color2)
}

.overlay,header.desktop .h-contact .info .item {
    display: flex;
    align-items: center;
    justify-content: center
}

.op-black,.op-black-2,.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.overlay {
    z-index: 9998;
    width: 100%;
    background: rgba(255,255,255,.4)
}

.overlay .spin {
    width: 3rem;
    height: 3rem;
    font-size: 20px
}

.op-black,.op-black-2 {
    background: rgba(0,0,0,.5)
}

.op-black {
    z-index: 4
}

.op-black,.op-black.hide {
    visibility: hidden;
    opacity: 0
}

.op-black.show {
    visibility: visible;
    opacity: 1
}

.op-black-2 {
    z-index: 1001
}

.op-black-2,.op-black-2.hide {
    visibility: hidden;
    opacity: 0
}

.op-black-2.show {
    visibility: visible;
    opacity: 1
}

header.desktop {
    background: #fefefe;
    box-shadow: 0 10px 20px -10px #cecece
}

header.desktop.fixed-desktop {
    top: 0;
    right: 0;
    left: 0;
    z-index: 999
}

header.desktop .h-contact {
    background: #f5f5f552
}

.dropdown-currencies-1 .dropdown-toggle,.dropdown-languages-1 .dropdown-toggle {
    color: var(--header-top-color);
    transition: all var(--transition-time)
}

.dropdown-currencies-1 .dropdown-toggle:hover,.dropdown-languages-1 .dropdown-toggle:hover {
    color: var(--header-top-color-hover)
}

.topbar-2025 {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #333;
    padding: 6px 0
}

.container-2025 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.menu-left-2025 a,.row-2025 {
    display: flex;
    align-items: center
}

.row-2025 {
    justify-content: space-between
}

.menu-left-2025 {
    display: flex;
    gap: 15px
}

.menu-left-2025 a {
    color: #555;
    font-size: 13px;
    text-decoration: none;
    gap: 5px;
    transition: color .2s ease
}

.menu-left-2025 a:hover {
    color: #680a47
}

.col-center-2025 {
    flex: 1;
    text-align: center
}

.qk-app-campaign-bell .campaign-icon .count {
    right: -2px!important;
    top: -2px!important
}

.support-2025 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333
}

.support-2025 i {
    font-size: 14px;
    color: #999
}

.support-2025 a {
    color: #333;
    font-weight: 600;
    text-decoration: none
}

.support-2025 a:hover {
    color: #333;
    text-decoration: underline
}

.support-2025 small {
    font-size: 12px;
    color: #888
}

.menu-2025 {
    display: flex;
    gap: 18px
}

.menu-2025 a,.menu-2025 i {
    font-size: 13px;
    transition: color .2s ease
}

.menu-2025 a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    text-decoration: none
}

.menu-2025 i {
    color: #999
}

.menu-2025 a:hover,.menu-2025 a:hover i {
    color: #680a47
}

@media (max-width:768px) {
    .row-2025 {
        flex-direction: column;
        gap: 6px
    }

    .col-center-2025 {
        text-align: left
    }

    .menu-2025,.menu-left-2025 {
        flex-wrap: wrap;
        gap: 12px
    }
}

header.desktop .h-contact .info .item {
    font-size: 11px;
    color: #555;
    transition: all var(--transition-time);
    margin-right: 20px;
    font-weight: 400;
    cursor: pointer;
    line-height: normal
}

header.desktop .h-contact .info .item i {
    margin-right: 6px;
    font-size: 13px
}

header.desktop .h-contact .info .item.wp i {
    font-weight: 400;
    font-size: 20px
}

header.desktop .h-contact .social-media,header.desktop .header-area {
    height: 30px;
    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: 55px;
    flex-direction: column;
    justify-content: center
}

header.desktop .header-area.last {
    align-items: flex-end;
    margin-right: 0!important
}

header.desktop .logo {
    align-items: flex-start;
    -webkit-align-items: flex-start
}

header.desktop .logo a img {
    max-height: 50px;
    max-width: 270px;
    width: 100%;
    height: 100%
}

header.desktop .search {
    width: 100%;
    position: relative;
    transition: all var(--transition-time)
}

.single-menu-container .single-menu li:hover>a:after,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: 95%;
    font-size: 13px;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    background: #f3f3f3!important;
    height: 45px;
    box-shadow: none;
    padding-left: 20px
}

@media (max-width:1440px) {
    header.desktop .search form input {
        width: 95%
    }
}

@media (max-width:1366px) {
    header.desktop .search form input {
        width: 90%
    }
}

@media (max-width:1280px) {
    header.desktop .search form input {
        width: 85%
    }
}

@media (max-width:1200px) {
    header.desktop .search form input {
        width: 80%
    }
}

@media (max-width:1024px) {
    header.desktop .search form input {
        width: 75%
    }
}

@media (max-width:991px) {
    header.desktop .search form input {
        width: 100%;
        max-width: 100%;
        float: none
    }
}

header.desktop .search form input::placeholder {
    color: #666
}

header.desktop .search:active,header.desktop .search:focus,header.desktop .search:hover {
    border-color: var(--main-color2)
}

section.h-center {
    height: 80px
}

header.desktop .h-center .container {
    height: 85px;
    padding-top: 10px;
    padding-bottom: 10px
}

header.desktop .h-center .container .search {
    padding-top: 15px
}

header.desktop .search form .btn-send {
    position: relative;
    right: 50px;
    height: 40px;
    border-width: 0;
    color: var(--main-color2);
    border-radius: 0;
    font-size: 20px;
    top: 5px;
    transition: all var(--transition-time)
}

header.desktop .menu {
    height: 65px;
    border: 1px solid #ebebeb;
    border-right: 0;
    border-left: 0;
    display: flex;
    align-items: center
}

header.desktop .mega-menu {
    padding: 0;
    position: relative
}

header.desktop .mega-menu .navbar-nav {
    flex-direction: row;
    height: 50px;
    gap: 10px;
    display: flex;
    justify-content: space-between
}

header.desktop .mega-menu .nav-item {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column
}

header.desktop .mega-menu .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: var(--menu-color);
    line-height: normal;
    font-weight: 500;
    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);
    border-bottom: 1px solid transparent
}

header.desktop .mega-menu .nav-link::after {
    display: none
}

header.desktop .mega-menu .nav-item:focus .nav-link,header.desktop .mega-menu .nav-item:hover .nav-link {
    color: var(--menu-color-hover);
    border-bottom: 1px solid #000;
    transition: all var(--transition-time)
}

header.desktop .mega-menu .nav-item:last-child .nav-link {
    border-right: 0
}

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: 48px;
    position: absolute;
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0/5%);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.05);
    box-shadow: 0 0 5px 0 rgb(0 0 0/5%);
    border: 1px solid #ebebeb;
    border-top: 0
}

header.desktop .mega-menu .dropdown .dropdown-menu:hover,header.desktop .mega-menu .dropdown:hover .dropdown-menu {
    display: block!important
}

header.desktop .h-banner {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center
}

.mega-menu-container {
    padding: 20px
}

.mega-menu-container .sub-cat {
    margin-bottom: 15px
}

.mega-menu-container .sub-title {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
    transition: all var(--transition-time)
}

.mega-menu-container ul,.mega-menu-container ul li {
    list-style: none;
    padding: 0;
    margin: 0
}

.mega-menu-container ul li {
    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: 500;
    font-size: 14px
}

.mega-menu-container .sub-title:hover,.mega-menu-container ul li a:hover {
    color: var(--main-color)
}

.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-container {
    display: block
}

.single-menu-container .single-menu {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    height: 70px;
    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;
    z-index: 100;
    text-align: center
}

.single-menu-container .single-menu li .sub-single-item {
    font-weight: 400;
    text-decoration: none;
    display: block;
    color: #000;
    transition: all .2s ease-in-out 0s;
    font-size: 15px;
    text-align: center
}

.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;
    width: 170px;
    position: absolute;
    left: 0;
    background: #fff;
    z-index: 99;
    transform: translate(0,20px);
    transition: all .2s ease-out;
    -webkit-box-shadow: 1px 1px 6px -4px rgba(0,0,0,.75);
    -moz-box-shadow: 1px 1px 6px -4px rgba(0,0,0,.75);
    box-shadow: 1px 1px 6px -4px rgba(0,0,0,.75)
}

.single-menu-container .single-menu ul li {
    display: block;
    float: none;
    background: 0 0;
    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 ul li:hover>a,.single-menu-container .single-menu ul li a:hover,footer .info ul li a:hover {
    color: var(--main-color)
}

.single-menu-container .single-menu li:hover>ul,.single-menu-container .single-menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0)
}

.single-menu-container .single-menu ul ul {
    left: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px,20px);
    transition: all .2s ease-out
}

.mobile-header-space {
    height: 0;
    display: none
}

header.mobile {
    display: none;
    background: #fff;
    height: 97px;
    margin-top: 35px;
    box-shadow: rgba(0,0,0,.2)0 1px 1px;
    z-index: 10
}

header.mobile .left {
    width: 11%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 45%;
    box-sizing: border-box;
    padding: 20px 10px 10px;
    font-size: 10px
}

header.mobile .left a {
    font-size: 11px
}

header.mobile .center,header.mobile .right {
    width: 49%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45%
}

header.mobile .right {
    width: 40%;
    justify-content: flex-end;
    box-sizing: border-box;
    gap: 10px
}

header.mobile .right .sepet {
    position: relative;
    top: 5px
}

header.mobile .right a img {
    width: 24px;
    height: 24px
}

header.mobile .logo img {
    max-height: 55px;
    max-width: 156px;
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-left: 10px
}

header.mobile .icon-group {
    position: relative;
    color: #333;
    font-size: 25px
}

header.mobile .icon-group .badge {
    position: absolute;
    top: 7px;
    right: 2px;
    min-width: 16px;
    max-width: 22px;
    padding: 0;
    text-align: center;
    height: 16px;
    background: #299e44;
    font-size: 10px;
    color: #fff;
    border-radius: 40%;
    display: flex;
    justify-content: center;
    align-items: center
}

.sidebar-menu,.sidebar-user {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s
}

.sidebar-user {
    z-index: 21;
    right: 0;
    margin-right: -250px
}

.sidebar-user.active {
    margin-right: 0
}

.sidebar-user .title {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600
}

.sidebar-menu .title .btn-close,.sidebar-user .title .btn-close {
    color: #fff
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 500
}

.sidebar-user .login-menu a i {
    width: 30px;
    margin-right: 10px;
    text-align: left
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll
}

.sidebar-user .title-alt {
    padding: 10px;
    background: rgba(0,0,0,.15);
    font-size: 14px;
    font-weight: 500
}

.sidebar-menu .categories ul,.sidebar-menu-type-2 .categories ul,.sidebar-user .footer-links ul,header.desktop .header-cart-hover .dropdown-menu ul.auth-links,header.desktop .header-cart-hover .dropdown-menu ul.user-links {
    margin: 0;
    padding: 0
}

.sidebar-menu .categories ul li,.sidebar-user .footer-links ul li {
    padding: 0;
    list-style: none
}

.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 {
    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-alt {
    padding: 10px;
    background: rgba(0,0,0,.15);
    font-size: 14px;
    font-weight: 500
}

.sidebar-menu .categories ul li a,.sidebar-menu .links a,.sidebar-user .footer-links ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px
}

.sidebar-menu .links a i,.sidebar-menu-type-2 .links a i {
    float: right
}

.sidebar-menu .categories ul li a {
    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 {
    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: 0;
    box-shadow: none;
    margin: 0!important;
    border-left: 1px solid #e6e6e6
}

.stores .card:first-child {
    border-left: 0
}

.etbiss,.stores .card .card-body {
    display: flex;
    align-items: center;
    justify-content: center
}

.stores .card .card-body {
    padding: 10px
}

.stores .card .card-body img {
    max-height: 80%;
    max-width: 60%!important;
    margin: 0 auto
}

.sidebar-menu-type-2 .categories ul .multi,.stores .card .card-header {
    display: none
}

.stores .text-white {
    font-weight: 700;
    font-size: 12px!important
}

.etbiss {
    gap: 10px;
    margin: 15px auto;
    text-align: left
}

.etbiss img {
    height: 60px;
    width: 60px;
    border-radius: 8px;
    object-fit: cover
}

.social-menu {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap
}

.etbiss span,.social-menu a {
    background: #293032;
    align-items: center
}

.social-menu a {
    display: flex;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: all .3s ease
}

.social-menu a:hover {
    background: #680a47;
    transform: translateY(-2px)
}

.etbiss span {
    padding: 12px 20px;
    color: #f8f8f8;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    gap: 6px
}

@media (max-width:1280px) {
    .etbiss img {
        height: 50px;
        width: 50px
    }

    .etbiss span {
        font-size: 11px;
        padding: 10px 15px
    }
}

@media (max-width:768px) {
    .etbiss {
        flex-direction: column;
        gap: 8px
    }

    .etbiss span {
        white-space: normal;
        text-align: center
    }
}

footer {
    background: #fff;
    -webkit-box-shadow: 0 10px 20px 5px #cecece;
    -moz-box-shadow: 0 10px 20px 5px #cecece;
    box-shadow: 0 10px 20px 5px #cecece
}

footer .logo-area {
    text-align: center;
    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: 700;
    text-align: center;
    margin-bottom: 15px
}

footer .title-2 {
    color: #0af;
    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;
    text-align: left
}

footer .info ul li a {
    display: block;
    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 .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
}

.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 .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;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px
}

.sidebar-menu-type-2 .categories ul li {
    padding: 10px;
    list-style: none;
    border-bottom: 1px solid #e2e2e2;
    position: relative
}

.sidebar-menu-type-2 .categories ul li a img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid #f8f8f8;
    background-color: #fff
}

.sidebar-menu-type-2 .categories ul li a {
    display: flex;
    padding: 5px;
    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;
    transform: rotate(0deg)
}

.sidebar-menu-type-2 .categories ul li a .icon:hover {
    transform: rotate(90deg)
}

.sidebar-menu-type-2 .categories .multi li a .icon {
    right: 13px
}

.sidebar-menu-type-2 .categories ul .multi li:first-child {
    display: none
}

.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 {
    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: 40px;
    align-items: center
}

.mobile-menu-close i {
    border: 1px solid #e2e2e2;
    padding: 1rem;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding-top: 13px;
    padding-left: 14px;
    margin-top: 6px
}

.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
}

.show-category .card-product .card-product-inner .price-group .discount,.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,.mobile-menu-close i {
    text-align: center;
    color: #000
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 80%;
    box-sizing: border-box;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll
}

.card-product {
    border-radius: 15px
}

.product-profile-1 .carousel .carousel-inner {
    border: 1px solid #e6e6e6;
    border-radius: 10px
}

.product-profile-1 .social-share-special {
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    flex-wrap: nowrap;
    padding: 10px;
    text-align: center
}

@media (max-width:768px) {
    .product-profile-1 .product-reviews .count a,.product-profile-1 .product-reviews .count span,.urun-info-container .urun-soru-cevap1 a {
        font-size: 14px;
        text-decoration: none;
        font-weight: 500;
        line-height: 1.4;
        color: #707070
    }

    .urun-info-container .urun-soru-cevap1 a {
        color: #000
    }
}

.product-dugmeleri .product-specaildisc {
    font-size: 15px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 20px 15px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: #535353;
    color: #fff;
    font-style: normal;
    font-weight: 400
}

@media (min-width:768px) {
    .bulk-discount .sadece-mobil-addet {
        display: none!important
    }

    .bulk-discount h3 {
        font-size: 11px;
        color: #333;
        line-height: 1.5;
        padding-top: 5px;
        font-weight: 500;
        font-family: "Poppins",sans-serif
    }
}

.bulk-discount {
    padding-bottom: 15px;
    padding-top: 10px;
    background: #fff
}

.bulk-discount h3 {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Poppins",sans-serif;
    padding-top: 5px
}

.discount-options {
    gap: 10px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    width: 100%
}

.discount-box {
    position: relative;
    align-content: center;
    padding-top: 10px;
    padding-bottom: 3px;
    width: 25%;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.05);
    cursor: pointer;
    text-align: center;
    transition: background-color .3s,border-color .3s;
    display: inline-block
}

.bulk-discount .badge {
    background-color: #effbf5;
    font-weight: 200;
    font-family: "Poppins",sans-serif;
    color: #1d9a37;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    position: absolute;
    top: -7px;
    left: 30px
}

.discount-box .quantity {
    display: block
}

.discount-box .discount {
    display: block;
    font-size: 14px;
    color: #333;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

@media (max-width:480px) {
    .discount-box .discount,.discount-box .quantity {
        font-size: 9px
    }

    .bulk-discount .badge {
        top: -7px;
        left: 13px;
        background-color: #effbf5;
        color: #fff;
        font-weight: 200;
        font-family: "Poppins",sans-serif
    }

    .bulk-discount {
        font-family: "Arial",sans-serif;
        text-align: left;
        max-width: 100%;
        margin-bottom: 5px;
        padding: 2px 2px 20px;
        background: #fff
    }
}

@media (max-width:768px) {
    .discount-box .discount,.discount-box .quantity {
        font-size: 10px
    }

    .bulk-discount {
        font-family: "Poppins",sans-serif;
        text-align: left;
        max-width: 100%;
        margin-bottom: 5px;
        padding: 2px 2px 10px;
        background: #fff
    }

    .discount-box {
        padding-top: 10px;
        padding-bottom: 5px;
        width: 25%
    }

    .bulk-discount h3 {
        font-size: 12px;
        color: #333;
        font-weight: 500;
        line-height: 1.5;
        font-family: "Poppins",sans-serif;
        padding-top: 10px;
        padding-bottom: -6px
    }

    .bulk-discount .badge {
        background-color: #f5f5f5;
        font-weight: 400;
        color: #666;
        font-size: 9px;
        padding: 4px 10px;
        border-radius: 10px;
        position: absolute;
        top: -10px;
        left: 18px;
        justify-content: center
    }
}

.discount-box.selected {
    background-color: #1d9a37!important;
    border: 1px solid #1d9a37
}

.discount-box.selected span {
    color: #fff!important;
    background-color: #1d9a37!important
}

.card-category .image {
    border-radius: 50%;
    overflow: hidden;
    max-width: 170px
}

.card-category .title {
    font-weight: 400;
    font-size: 11px;
    color: #181818;
    width: 60px;
    word-wrap: break-word
}

.accordion-product,.card-category {
    background-color: #fff
}

.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
}

.btn.btn-minus-99,.btn.btn-plus99 {
    border: 1px solid #36b257!important;
    width: 35px;
    height: 25px;
    background: #fff!important;
    color: #36b257!important;
    border-radius: 50px
}

.btn.btn-minus-99 {
    border: 1px solid #f73637!important;
    color: #f73637!important
}

@media (max-width:767px) {
    .shopping-cart-1 .table tr {
        border: 1px solid #e0e0e0!important;
        float: left;
        width: 100%;
        margin-top: 10px;
        height: 170px
    }
}

.accordion-product {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    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;
    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: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    margin-top: 5px;
    align-content: center;
    border: 1px solid #e9e9e9;
    border-radius: 5px
}

.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,.kupon-kampanya-sade strong {
    font-weight: 600
}

.product-contact a {
    color: #444
}

.product-contact i {
    color: #b61414;
    font-size: 15px
}

.product-profile-1 .profile-ust-baslik {
    flex-direction: column;
    position: left;
    flex-wrap: nowrap;
    text-align: left;
    width: 100%
}

.product-profile-1 .profile-ust-baslik span,.profile-ust-baslik span {
    font-size: 12px;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

.product-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    position: relative
}

.share-wrapper {
    position: relative
}

.share-btn,.share-popup a {
    display: flex;
    align-items: center
}

.share-btn {
    background: #fff;
    border: 0;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #555;
    transition: color .2s,transform .2s,background .2s
}

.share-btn:hover {
    color: #d52121;
    background: #fff;
    transform: scale(1.1)
}

.share-popup {
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 8px 0;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 10
}

.share-popup a {
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    gap: 8px;
    transition: background .2s
}

.share-popup a:hover {
    background-color: #f5f5f5
}

.share-wrapper:hover .share-popup {
    display: flex
}

.product-profile-1 h1.title {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.7;
    color: #1F2937;
    padding-bottom: 0;
    border-bottom: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width:768px) {
    .product-profile-1 h1.title {
        font-size: 14px;
        line-height: 1.6;
        -webkit-line-clamp: 2;
        font-weight: 500;
        margin-top:10px;
    }

    .product-profile-1 .product-short-desc {
        font-size: 12px;
        line-height: 1.5;
        margin: 6px 0 12px
    }
}

.product-profile-1 .product-short-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    margin: 1px 0 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

@media (max-width:768px) {
    .product-profile-1 .product-short-desc {
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 3
    }
}

.product-profile-1 .profile-ust-baslik .degerlendirme-yazi,.profile-ust-baslik .degerlendirme-yazi {
    position: absolute;
    left: 125px;
    top: 77px;
    font-size: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 300
}

.profile-ust-baslik-price-group {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px
}

.profile-ust-baslik {
    flex-direction: column;
    position: left;
    flex-wrap: nowrap;
    text-align: left;
    width: 100%
}

@media (max-width:768px) {
    .favori-listesi-container99 {
        display: none
    }
}

@media (min-width:769px) {
    .favori-listesi-container99 {
        display: block
    }
}

.product-profile-1 .free-cargo-99 {
    height: 80px;
    width: 80px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--main-color2);
    border-radius: 2px;
    z-index: 1
}

.product-body {
    background: #fff!important
}

.product-body .product-profile-info .sale-price-discount {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    border: 1px solid #14613a;
    background: #fff;
    color: #14613a;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 20px
}

.product-body .sale-price-discount {
    display: inline-flex;
    align-items: center;
    color: #000;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 400
}

.product-body .product-profile-info .sale-price-discount .discount_yazialani {
    background: #fff;
    color: #000;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 0;
    font-weight: 400;
    align-content: center
}

.card-product .card-product-inner .price-group .discount {
    background: #277c27
}

.show-category .card-product .card-product-inner .price-group .discount {
    height: 25px;
    width: 30px;
    font-weight: 130;
    color: #fff;
    border: 1px solid var(--main-color2);
    border-radius: 5px;
    margin-left: 10px
}

.product-profile-1 .carousel .carousel-outer .discount {
    display: none
}

.hizli-sepet .sale-price,.product-profile-info .sale-price-discount .sale-price {
    font-size: 30px;
    font-weight: 600
}

@media (max-width:485px) {
    .mobile-cart-price {
        padding: 10px
    }

    .pattern-group-body .card-product .card-product-inner .free-cargo-badge {
        align-items: center;
        border-radius: 3px;
        background: #0bc15c;
        color: #fff;
        display: flex;
        font-size: 6px;
        font-weight: 400;
        height: 13px;
        justify-content: center;
        line-height: 8px;
        position: absolute;
        right: 5px;
        left: 5px;
        top: 5px;
        text-align: center;
        width: 50px;
        z-index: 1
    }

    .dt-discount-img img {
        display: none
    }
}

@media (max-width:400px) {
    .mobile-cart-price {
        padding: 0
    }

    .pattern-group-body .card-product .card-product-inner .free-cargo-badge {
        align-items: center;
        border-radius: 3px;
        background: #0bc15c;
        color: #fff;
        display: flex;
        font-size: 6px;
        font-weight: 400;
        height: 13px;
        justify-content: center;
        line-height: 8px;
        position: absolute;
        right: 5px;
        left: 5px;
        top: 5px;
        text-align: center;
        width: 50px;
        z-index: 1
    }

    .dt-discount-img img {
        display: none
    }

    .ppriceg-right {
        display: flex;
        align-items: left;
        justify-content: left;
        height: 100%;
        min-width: 300px;
        margin-top: 20px
    }
}

@media (max-width:354px) {
    .pattern-group-body .card-product .card-product-inner .free-cargo-badge {
        align-items: center;
        border-radius: 3px;
        background: #0bc15c;
        color: #fff;
        display: flex;
        font-size: 6px;
        font-weight: 400;
        height: 13px;
        justify-content: center;
        line-height: 8px;
        position: absolute;
        right: 5px;
        left: 5px;
        top: 5px;
        text-align: center;
        width: 50px;
        z-index: 1
    }
}

.product-body .product-profile-info {
    background: #fff
}

.pattern-group-body .card-product .card-product-inner .free-cargo-badge {
    left: 5px;
    top: 5px
}

.dt-discount-img img {
    display: none
}

.ppriceg-right {
    display: flex;
    align-items: left;
    justify-content: left;
    height: 100%;
    min-width: 300px;
    margin-top: 20px;
    padding-right: 20px
}

.product-body .product-info-name {
    flex: 0 0 auto;
    width: 30%;
    color: #6B7280;
}

.product-profile-info li a {
    color: #333;
}

.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 {
    overflow: hidden;
    border-radius: 15px;
    padding: 0!important;
    border: 1px solid #e9e9e9
}

.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
}

.butik-story {
    border: 1px solid #e9e9e9
}

.butik-story .card-product .card-product-inner .price-group .prices .list-price {
    height: 20px;
    margin-bottom: 5px;
    margin-left: 10px;
    color: #b4b4b4;
    -moz-text-decoration-color: #b4b4b4;
    text-decoration-color: #b4b4b4;
    font-weight: 400;
    line-height: 25px
}

.butik-story .card-product .card-product-inner .price-group {
    justify-content: flex-start
}

.butik-story .card-product .card-product-inner .price-group .prices .sale-price {
    padding: 0 5px;
    background: #181818;
    color: #fff;
    border-radius: 5px;
    margin-top: 5px;
    line-height: 25px;
    font-size: 16px;
    font-weight: 600
}

.butik-story .homepage-sale-desc {
    font-size: 10px;
    margin-right: 5px
}

.five-banners {
    padding: 10px 25px;
    background: #f9f9f9!important
}

.card-product .card-product-inner .image-wrapper .image {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-product .card-product-inner .image-wrapper .image img {
    transform: scale(1);
    transition: all .4s;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.card-product:hover .card-product-inner .image-wrapper .image img {
    transform: scale(1.04);
    transition: all .4s
}

.p-g-mod-t-45 .carousel-type-1 .carousel-image-wrapper {
    position: relative
}

.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: 20px;
    padding: 20px
}

.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
}

.inset-bar-arrow {
    color: #4dc761
}

.category-filter-order-desktop {
    display: inline-block;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 45px;
    font-size: 15px;
    color: #4a4a4a!important;
    font-weight: 400;
    border: 1px solid #e7e3e3!important;
    border-radius: 5px;
    background: url(images/select-arrow.svg)no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    outline: 0;
    margin-top: 15px
}

.category-filter-order-desktop:focus {
    border-color: #e7e3e3!important
}

.categories-body .product-view-select a div {
    width: 15px;
    height: 30px;
    background: #e2e6eb;
    border-radius: 1px;
    margin: 0 2px
}

.categories-body .product-view-select a.active div {
    background: #a1a1a1
}

.categories-body .product-view-select a {
    background: #fff;
    height: 40px;
    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;
    margin-top: 10px
}

.category-filter-order .list-wrap .list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 5px
}

.category-filter-order .list-wrap {
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 8px;
    padding: 15px 10px
}

.categories-body .category-filter-list .list-wrap .list li {
    float: left;
    font-size: 14px;
    color: #212529;
    display: inline-block;
    line-height: 18px;
    font-weight: 300;
    width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.category-filter-order .list-wrap .list li .lag-checkbox .siralama99 {
    font-size: 14px;
    background: #fff;
    font-weight: 600;
    color: #635e62;
    text-align: center;
    border-radius: 5px;
    padding: 22px 4px
}

.category-filter-order .list-wrap .list li .lag-checkbox {
    transition: all var(--transition-time);
    background: #def0e1;
    color: #635e62;
    border-radius: 5px;
    text-align: center;
    padding: 22px 4px
}

.category-filter-order .list-wrap .list li::visited:hover .lag-checkbox {
    background: #ebf5ff
}

.categories-body .pattern-group .p-g-mod-t-20>.p-g-mod-header {
    border-bottom: 0;
    padding-left: 0!important
}

.category-filter-order-mobile {
    display: none
}

.pattern-group .p-g-mod-showcase .p-g-mod-header {
    border-bottom: 0
}

.card-product-content {
    text-align: center;
    color: #555
}

.card-product .card-product-inner .product-label img {
    max-height: 25px;
    margin-bottom: 5px;
    margin-right: 5px
}

.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: 5px
}

.categories-body .p-g-mod-t-cat-filter {
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid #f4f4f4;
    border-radius: 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: 0
}

.container .pattern-group-body .p-g-tab-wrapper .p-g-t-nav .nav li {
    border: 1px solid #99999c;
    background-color: #fff;
    margin: 5px;
    border-radius: 5px
}

.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;
    border: 1px solid #000
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
    transition: var(--transition-time)
}

.product-details-tab-product-details-tab-colorful .tab-content {
    border: 1px solid #ebebeb;
    border-top: 0
}

.product-profile-1 .carousel .carousel-indicators li.active {
    border-color: var(--main-color)
}

.p-g-mod-base-content {
    border-radius: 10px
}

.contact-info .contact-item i,.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
}

.contact-info .contact-item a {
    color: #000
}

.card-product .right-to-left .cart-group a:hover i,.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%
}

.hizli-sepet .sale-price-discount {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px
}

.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;
    font-size: 24px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px
}

.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: 16px;
    color: #151515;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 25px
}

.native-modal.show .hizli-sepet .modal-content .product-reviews .stars .star {
    margin-right: 1px;
    margin-top: 2px;
    color: #bfbfbf;
    font-size: 18px
}

.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 .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: 0-2px 18px -3px rgb(0 0 0/58%);
    box-shadow: 0-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
}

.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
}

.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: 5px
}

header.desktop .mega-menu .nav-link {
    flex: none;
    margin-top: 5px;
    height: auto
}

.single-menu-container .single-menu li .subtitle-img {
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    display: block;
    color: #fff;
    transition: all .2s ease-in-out 0s;
    font-size: 16px
}

.single-menu-container .single-menu li .sub-single-item {
    padding: 0 15px
}

.e404-body {
    background: repeating-linear-gradient(45deg,transparent,transparent 10px,#f8f8f8 10px,#f8f8f8 20px),linear-gradient(to bottom,#fff,#fff)
}

.e404-btn {
    background: #fff;
    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,.35);
    -webkit-box-shadow: inset 0-1px 1px #333,0 5px 0#222,0 6px 8px rgba(0,0,0,.35);
    box-shadow: inset 0-1px 1px #333,0 5px 0#222,0 6px 8px rgba(0,0,0,.35);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .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,.35);
    -webkit-box-shadow: inset 0-1px 1px var(--main-color),0 5px 0 var(--main-color),0 6px 8px rgba(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,.35)
}

.e404-content .e404-logo img {
    max-height: 100px;
    border: 0!important
}

.product-body .product-profile-info .fiyat-yatay-cizgi {
    border-bottom: 1px solid #e6e6e6
}

.variant-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 5px;
    font-size: 14px;
    padding: 0 10px
}

.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 0 0
}

.e404-description {
    color: gray;
    font-size: 1rem;
    margin: 5px;
    text-align: center;
    font-weight: 300
}

.e404-page-type-2,.e404-page-type-2 .e404-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0
}

.e404-page-type-2 .e404-content {
    flex-direction: column;
    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 0 0
}

footer .mobile-app-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-align: center
}

footer .mobile-app img {
    max-height: 40px
}

@media (max-width:767px) {
    .product-comment-list-v2 .score .stars {
        height: 25px;
        gap: 15px
    }
}

@media (max-width:768px) {
    .gizlenecek-alan199 {
        display: none!important
    }

    .urun-detay-sekmeler199 {
        margin-top: 15px
    }
}

.product-customer-actions {
    border-radius: 10px;
    padding: 20px
}

.product-profile-1 .pattern-group-body {
    border: 1px solid #f4f4f4;
    border-radius: 10px
}

.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
}

.kapida-odemeli,.product-transfer-discount {
    background: #daf4e1;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #f8f8f8;
    font-size: 16px;
    color: #000;
    font-weight: 400
}

.product-profile-1 .free-cargo-badgem,.product-profile-1 .product-taksik-secenekleri2,.product-profile-1 .product-transfer-sure2 {
    background: #daf4e1;
    padding: 14px 10px 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #f8f8f8;
    font-size: 16px;
    color: #000;
    font-weight: 400
}

.product-profile-1 .free-cargo-badgem,.product-profile-1 .product-transfer-sure2 {
    padding: 10px
}

.product-profile-1 .free-cargo-ucretsiz {
    background: 0 0;
    width: 80px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
    position: absolute;
    right: 30px;
    margin-top: -60px;
    padding-left: 10px
}

.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: 0;
    top: 0;
    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-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: 0;
    top: 0;
    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 .social-media-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600
}

footer .social-media a {
    font-size: 20px;
    margin-right: 20px
}

footer .social-media a:last-child {
    margin-right: 0
}

.pattern-group-body .card-product .card-product-inner .hizli-teslimat img {
    margin-left: 5px;
    height: 20px;
    width: 15px
}

.pattern-group-body .card-product .card-product-inner .free-cargo-badge,.pattern-group-body .card-product .card-product-inner .hizli-teslimat {
    align-items: center;
    border-radius: 3px;
    color: #fff;
    display: flex;
    justify-content: center;
    position: absolute;
    text-align: center;
    z-index: 1;
    font-weight: 500
}

.pattern-group-body .card-product .card-product-inner .hizli-teslimat {
    background: #535353;
    font-size: 7px;
    height: 25px;
    line-height: 9px;
    right: 3px;
    left: 3px;
    top: 5px;
    width: 55px
}

.pattern-group-body .card-product .card-product-inner .free-cargo-badge img {
    margin-left: 5px;
    height: 15px;
    width: 15px
}

.pattern-group-body .card-product .card-product-inner .free-cargo-badge {
    background: #0bc15c;
    font-size: 6px;
    height: 20px;
    line-height: 8px;
    right: 5px;
    width: 50px
}

.card-product .card-product-inner .buttons .btn-cart:hover,.card-product .down-to-top .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
}

.owl-wrapper .owl-single-button button,.owl-wrapper .owl-single-button button i {
    color: #555;
    font-size: 20px
}

.payment-final-buttons-1 .btn-complete,.payment-final-buttons-1 .btn-complete:hover {
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 50px;
    align-content: center;
    margin: 0 auto;
    text-align: center
}

.payment-final-buttons-1 .btn-complete:hover {
    background: #212529;
    border-color: #212529;
    padding: 10px 5px
}

.payment-final-buttons-1 .btn-complete {
    background: #4dc761;
    border-color: #4dc761
}

.product-favourite-kart {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #fff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    z-index: 2;
    border: 1px solid #e6e6e6;
    transition: box-shadow .3s;
    cursor: pointer
}

.product-favourite-kart a:hover i {
    color: #f27a1a
}

.product-favourite-kart a {
    font-size: 16px;
    margin-top: 2px;
    margin-right: 6px;
    padding-left: 4px;
    color: #363636
}

header.desktop .header-bar .bar-link .icon {
    position: relative;
    transition: all var(--transition-time);
    margin-bottom: 2px
}

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: 20px
}

header.desktop .header-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px
}

header.desktop .header-bar .bar-cart .icon .count {
    position: absolute;
    right: -10px;
    top: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f00000;
    color: #fff;
    font-size: 11px;
    border-radius: 50%
}

.product-view-select {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center
}

.card-product .it-over,.video-play i {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center
}

.card-product .it-over {
    width: 100%;
    background: rgb(255 255 255/80%);
    color: #fff;
    height: 50px;
    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: 0;
    right: -30px;
    transition: all .4s;
    background: #fff;
    z-index: 9;
    border: 1px solid #ebebeb;
    border-radius: 5px
}

.card-product .right-to-left .button-group {
    background: 0 0;
    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:hover .right-to-left {
    opacity: 1;
    right: 0;
    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: 0 0;
    padding: 7px
}

.card-product .btn-cart,.card-product .it-over {
    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
}

#payment-methods-content-0 .payment-method-form .alert,.product-carousel-mobile,header.desktop .header-cart-hover .nav-link::after {
    display: none
}

.video-play {
    position: relative
}

.video-play i {
    top: 0;
    width: 30px;
    height: 30px;
    border: 3px solid #ffffff;
    border-radius: 100%;
    line-height: 25px;
    margin: auto;
    text-indent: 1px;
    color: #ffffff;
}

.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
}

@media (min-width:791px) {
    .p-g-mod.p-g-mod-t-55.p-g-mod-showcase.show-category {
        display: none
    }
}

@media (max-width:791px) {
    .p-g-mod.p-g-mod-t-55.p-g-mod-showcase.show-category2 {
        display: none
    }
}

.qk-app-discount-counter,.size-ozel-urun-list {
    margin-bottom: 10px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%
}

.size-ozel-urun-list {
    padding: 20px 10px 30px;
    background-image: url(https://www.tilbehome.com/theme/___shuttle/assets/images/masaustu-banner/transparan-arka-plan.webp?v=1741457288)!important;
    background-size: cover;
    background-position: center
}

.size-ozel-urun-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(224,216,207,.4);
    border-radius: 15px;
    z-index: -1
}

.size-ozel-urun-list .col-list-p-v-1 {
    padding-bottom: 0;
    padding-top: 0;
    background-color: transparent
}

.size-ozel-urun-list .p-g-mod.p-g-mod-t-55.p-g-mod-showcase {
    background-color: transparent
}

.size-ozel-urun-list .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.size-ozel-urun-list .p-g-m-h-i-description {
    color: #333!important
}

.size-ozel-urun-list .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.size-ozel-urun-list .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.size-ozel-urunler .nav-link,.size-ozel-urunler .nav-link.active {
    background: #a9c9d9!important;
    padding: 5px 12px!important;
    border-radius: 8px 8px 0 0!important
}

.size-ozel-urunler .nav-link.active {
    color: #fff!important;
    border-bottom: 0!important
}

.size-ozel-urunler .nav-link {
    border: 0!important
}

.size-ozel-urunler .nav {
    justify-content: flex-end!important
}

@media (max-width:767px) {
    .size-ozel-urunler .nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .size-ozel-urunler .nav .nav-item {
        flex: 1;
        text-align: center
    }
}

.qk-app-discount-counter .dc-contents {
    display: flex;
    width: 500px;
    height: 180px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    background: 0 0!important
}

.qk-app-discount-counter {
    padding: 10px 10px 30px
}

.qk-app-discount-counter,.show-category1,.show-category2 {
    background-image: url(https://www.tilbehome.com/theme/___shuttle/assets/images/masaustu-banner/transparan-arka-plan.webp?v=1741457288)!important;
    background-size: cover;
    background-position: center;
    box-shadow: 1px 6px 12px rgba(0,0,0,.08);
    border: 1px solid rgba(180,180,180,.4)
}

.show-category1::before {
    background-color: rgba(255,182,193,.4)
}

.show-category1 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category1 .p-g-m-h-i-description {
    color: #333!important
}

.show-category1 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category1 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category1::before,.show-category2::before,.show-category3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px
}

.show-category2::before {
    background-color: rgba(144,206,157,.4)
}

.show-category2 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category2 .p-g-m-h-i-description {
    color: #333!important
}

.show-category2 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category2 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category1,.show-category2,.show-category3 {
    margin-bottom: 10px;
    padding: 20px 10px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%
}

.show-category3::before {
    background: linear-gradient(180deg,#1e3c72 0,#2a5298 25%,#6dd5ed 60%,#ff758c 100%)
}

.show-category3 .p-g-m-h-i-title {
    color: #fff!important;
    left: 10px;
    z-index: 3;
    position: relative
}

.show-category3 .p-g-m-h-i-description {
    font-size: 14px!important;
    color: #fff!important;
    left: 10px
}

.show-category3 .p-g-m-h-button .btn-mod {
    color: #fff!important
}

.show-category3 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category3 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category4,.show-category5 {
    padding: 20px 10px 30px;
    background-image: url(https://www.tilbehome.com/theme/___shuttle/assets/images/masaustu-banner/transparan-arka-plan.webp?v=1741457288)!important;
    background-size: cover;
    background-position: center;
    box-shadow: 1px 6px 12px rgba(0,0,0,.08);
    border: 1px solid rgba(180,180,180,.4)
}

.show-category4::before {
    background-color: rgba(255,255,153,.4)
}

.show-category4 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category4 .p-g-m-h-i-description {
    color: #333!important
}

.show-category4 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category4 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category4::before,.show-category5::before,.show-category6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px
}

.show-category5::before {
    background: rgba(255,244,224,.7)
}

.show-category5 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category5 .p-g-m-h-i-description {
    color: #333!important
}

.show-category5 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category5 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category4,.show-category5,.show-category6,.show-category7 {
    margin-bottom: 10px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%
}

.show-category6 {
    padding: 20px;
    margin-top: 10px
}

.show-category6::before {
    background: linear-gradient(180deg,#ff8008 0,#ffc837 100%)
}

.show-category6 .p-g-m-h-icon {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: center;
    width: 28px;
    left: 15px;
    z-index: 2
}

.show-category6 .p-g-m-h-icon i {
    font-size: 28px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
    text-align: center;
    top: 4px;
    width: 3px
}

.show-category6 .p-g-m-h-i-title {
    color: #fff!important;
    left: 5px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    line-height: normal
}

.show-category6 .p-g-m-h-i-description {
    font-size: 14px!important;
    color: #fff!important;
    left: 5px;
    top: -2px
}

.show-category6 .p-g-m-h-button .btn-mod {
    color: #fff;
    font-weight: 600;
    right: -10px;
    position: relative;
    top: 5px;
    z-index: 99
}

.show-category6 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category6 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category7 {
    padding: 20px 10px 30px;
    background-image: url(https://www.tilbehome.com/theme/___shuttle/assets/images/masaustu-banner/transparan-arka-plan.webp?v=1741457288)!important;
    background-size: cover;
    background-position: center;
    box-shadow: 1px 6px 12px rgba(0,0,0,.08);
    border: 1px solid rgba(180,180,180,.4)
}

.show-category10::before,.show-category7::before,.show-category9::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,182,193,.4);
    border-radius: 15px
}

.show-category7 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.card-product .card-product-inner .image-wrapper .image img {
    width: 100%;
    background: 0 0
}

.firsat-urunleri-solmenu .pattern-group-body {
    border-radius: 20px;
    border: 1px solid #f4f4f4;
    background: linear-gradient(to right,#370061 0,#370061 30%,#fbfbfb 100%);
    padding: 0 20px 0 0;
    margin-top: 10px;
    margin-bottom: 20px
}

.firsat-urunleri-solmenu .pattern-group .p-g-mod {
    background: #fff!important;
    margin-bottom: 0!important
}

.custom-image-container,.hediye-alan1 p {
    text-align: center
}

.custom-image-container img {
    width: 100%;
    height: auto
}

.show-category7 .p-g-m-h-i-description {
    color: #333!important
}

.show-category7 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category7 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category10,.show-category8,.show-category9 {
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%
}

.show-category8 {
    padding: 0 1px 10px 2px;
    background-color: #fff
}

.show-category8 .pattern-group .p-g-mod .p-g-mod-body.p-g-mod-body-p-0 .owl-wrapper {
    margin-top: 10px
}

.show-category8 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: 0
}

.show-category8 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: 0
}

.show-category10,.show-category9 {
    padding: 20px 10px 30px;
    background-image: url(https://www.tilbehome.com/theme/___shuttle/assets/images/masaustu-banner/transparan-arka-plan.webp?v=1741457288)!important;
    border-radius: 15px;
    box-shadow: 1px 6px 12px rgba(0,0,0,.08);
    border: 1px solid rgba(180,180,180,.4)
}

.show-category10::before,.show-category9::before {
    background-color: rgba(211,211,211,.4)
}

.show-category9 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category9 .p-g-m-h-i-description {
    color: #333!important
}

.show-category9 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.show-category9 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category10::before {
    background-color: rgba(144,206,157,.4)
}

.show-category10 .p-g-m-h-i-title {
    color: #1d4d2d!important
}

.show-category10 .p-g-m-h-i-description {
    color: #333!important
}

.show-category10 .owl-wrapper .owl-single-button.owl-single-button-next {
    right: -10px
}

.free-cargo .navigation-yk button.prev,.show-category10 .owl-wrapper .owl-single-button.owl-single-button-prev {
    left: -10px
}

.show-category-yorum {
    margin-bottom: 10px;
    padding: 0 10px 10px;
    background: linen!important;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    position: relative
}

.ana-slat-yani-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative
}

.ana-slat-yani-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.butik-story .p-g-mod-header.p-g-mod-header-p-0,.show-category .p-g-mod-header.p-g-mod-header-p-0 {
    display: flex;
    flex-direction: column
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button {
    z-index: 99;
    align-items: center
}

@media (max-width:768px) {
    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 18px;
        font-weight: 600;
        position: relative;
        left: 5px;
        bottom: 5px;
        color: #333;
        line-height: normal
    }

    .show-category5 {
        padding: 10px 10px 30px
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info {
        position: relative;
        align-items: flex-start;
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: center;
        top: 5px
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 99
    }

    .pattern-group .p-g-mod .p-g-mod-header {
        border-bottom: 1px solid rgba(0,0,0,.1);
        display: flex;
        height: 60px;
        padding: 10px 1px 10px 0;
        margin-top: 15px
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod {
        color: #65826f!important;
        font-weight: 600;
        position: relative;
        right: 0;
        margin-left: auto;
        display: block;
        z-index: 99
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-icon {
        font-size: 20px;
        width: 25px;
        position: relative;
        left: 13px;
        bottom: -6px;
        color: #fff
    }

    .owl-wrapper .card-product .card-product-inner .price-group .prices {
        display: flex;
        align-items: center;
        gap: 4px
    }

    .owl-wrapper .card-product .card-product-inner .price-group .prices .sale-price {
        font-size: 13px;
        font-weight: 600;
        color: #000;
        margin-left: 4px
    }

    .owl-wrapper .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 12px;
        color: #a7a7a7;
        font-weight: 500;
        text-decoration: line-through!important
    }
}

.card-product .card-product-inner .price-group .prices .sale-price {
    font-size: 16px;
    color: #f27a1a;
    margin-left: 2px;
    font-weight: 600
}

.card-product .card-product-inner .price-group .prices .list-price {
    font-size: 12px;
    color: #a7a7a7;
    font-weight: 400;
    text-decoration: line-through!important
}

.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
}

@media (max-width:991px) {

    .pattern-group-body .card-product .card-product-inner .free-cargo-badge,.pattern-group-body .card-product .card-product-inner .hizli-teslimat {
        align-items: center;
        border-radius: 3px;
        color: #fff;
        display: flex;
        height: 20px;
        justify-content: center;
        line-height: 8px;
        position: absolute;
        right: 5px;
        left: 5px;
        top: 5px;
        text-align: center;
        z-index: 1
    }

    .pattern-group-body .card-product .card-product-inner .free-cargo-badge {
        background: #0bc15c;
        font-size: 8px;
        font-weight: 400;
        width: 70px
    }

    .pattern-group-body .card-product .card-product-inner .hizli-teslimat {
        background: #535353;
        font-size: 7px;
        font-weight: 500;
        width: 55px
    }

    .category-filter-order-desktop,.dt-discount-img img,.product-view-select {
        display: none
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
        height: auto
    }

    footer .bb {
        background: #fff;
        box-shadow: 0 10px 20px -10px #cecece
    }

    .card-product .right-to-left {
        display: none!important
    }

    .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;
        border: 1px solid #f4f4f4;
        border-radius: 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,footer .info ul li a:before,footer .logo-area,header.desktop {
        display: none
    }

    .mobile-header-space,.product-carousel-mobile,header.mobile {
        display: block
    }

    .stores .cards {
        display: block;
        text-align: center
    }

    .stores .card {
        display: inline-block;
        margin: 0;
        max-width: 45%;
        height: 50px;
        border: 0
    }

    footer .bar .right-image,footer .bar p {
        text-align: center!important
    }

    footer .bar .right-image {
        margin: 10px 0
    }

    footer .bb {
        border-top: 0;
        border-bottom: 0
    }

    footer .info {
        padding-top: 0
    }

    footer .info .title {
        color: #fff;
        border: 0;
        padding: 10px;
        position: relative
    }

    footer .info .title::after {
        content: "+";
        right: 10px;
        top: 3px;
        bottom: 0;
        position: absolute;
        font-size: 20px;
        margin-bottom: 10px
    }

    footer .info .fs {
        text-align: center!important;
        border: 0;
        margin-bottom: 15px;
        padding: 10px
    }

    footer .info ul {
        margin: 0
    }

    footer .info .fs,footer .info ul li {
        color: #000!important
    }

    footer .info ul li a {
        color: #000
    }

    footer .social-media {
        justify-content: center;
        margin: 10px 0
    }

    footer .secure {
        text-align: center!important;
        margin: 10px 0
    }
}

@media (max-width:400px) {
    .butik-story .card-product .card-product-inner .price-group .prices .list-price {
        height: 14px;
        line-height: 14px
    }

    .butik-story .card-product .card-product-inner .price-group .prices .sale-price {
        line-height: 16px;
        font-size: 13px;
        font-weight: 600
    }
}

header.desktop .header-cart-hover {
    position: relative;
    display: flex
}

header.desktop .header-cart-hover .dropdown-menu {
    background-color: #fff;
    width: 300px;
    left: inherit;
    right: 0;
    top: 37px;
    position: absolute;
    border: 2px solid #ececec;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.05);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.05);
    box-shadow: 0 0 5px 0 rgba(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 .dropdown-menu:hover,header.desktop .header-cart-hover:hover .dropdown-menu {
    display: block!important
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li {
    margin: 0;
    list-style: none;
    padding: 0 0 0 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: 0
}

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 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: 0;
    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 .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
}

.table td,.table th {
    border-top: none
}

.ajax-shopping-cart {
    padding: 15px;
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08)
}

.ajax-cart-empty {
    font-size: 12px!important;
    text-align: center;
    padding: 20px 0;
    color: #777
}

.ajax-shopping-cart .product {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #f2f2f2;
    padding: 10px 0;
    transition: background .3s ease-in-out
}

.ajax-shopping-cart .product:last-child {
    border-bottom: 0
}

.ajax-shopping-cart .product:hover {
    background: #effbf5;
    border-radius: 6px
}

.ajax-shopping-cart .product .image {
    flex: 2;
    padding-right: 10px
}

.ajax-shopping-cart .product .price {
    flex: 2;
    font-size: 12px;
    text-align: right;
    color: #d9534f;
    font-weight: 700
}

.ajax-shopping-cart .product .info {
    flex: 3;
    text-align: right
}

.ajax-shopping-cart .product .info .name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s ease-in-out
}

.ajax-shopping-cart .product .info .name:hover {
    color: #b03a2e
}

@media (max-width:991px) {
    .custom-module-code-10564 .card-product .card-product-inner .buttons .btn-cart,.custom-module-code-8397 .card-product .card-product-inner .buttons .btn-cart,.modal-content .buttons .btn-cart,.product-profile-1 .carousel .carousel-indicators {
        display: none
    }


    .custom-module-code-10564 .card-product .card-product-inner .title,.custom-module-code-8397 .card-product .card-product-inner .title {
        width: 95%;
        padding: 0;
        margin-left: 5px;
        line-height: 14px;
        height: 40px;
        font-weight: 400;
        font-size: 10px;
        color: #404040;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: break-word;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: center
    }
}

.modal-content .buttons .btn-cart,.show-category8.card-product .card-product-inner .buttons .btn-cart {
    background: #fd5b06;
    border-color: #fd5b06;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    width: 80%
}



@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
    }

    .card-product .card-product-inner .price-group {
        padding-bottom: 10px;
        
    }

    .product-profile-1 .carousel .carousel-indicators li {
        max-width: 50px
    }
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-header {
    height: 35px!important;
    padding: 10px!important;
    color: #333
}

.hediye-alan1 {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding-bottom: 15px;
    padding-top: 15px
}

.hediye-alani1 {
    font-size: 20px;
    font-weight: 600;
    text-align: center
}

.hediye-alan1 .input-group {
    padding-left: 20px;
    padding-right: 20px
}

.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: .275rem .7rem!important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    height: 40px;
    margin-right: 10px
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body .btn-secondary {
    font-size: 15px;
    font-weight: 500;
    background: #49bd60;
    border-color: #49bd60;
    height: 40px;
    border-radius: 5px
}

.card-list-product .card-list-product-inner .image-wrapper .image img,.product-carousel-desktop.normal .carousel-item a img {
    width: 75%
}

@media (max-width:991px) {
    .hepsijet-countdown {
        border-radius: 15px;
        border: 1px solid #e2e2e2;
        background: #effbf5;
        padding: 20px 5px;
        margin-bottom: 15px;
        font-size: 12px;
        font-family: "Poppins",sans-serif;
        font-weight: 400
    }

    .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
    }
}

.card-product .card-product-inner .price-group {
    display: flex;
    font-weight: 400;
    height: auto;
    justify-content: center;
    align-items: center;
    color: #333;
    margin-top: 4px!important
}

.card-product .card-product-inner .price-group .prices {
    display: flex;
    align-items: center;
    gap: 10px
}

.sale-price-basket {
    padding: 2px;
    color: #454545;
    font-size: 10px;
    font-weight: 300;
    display: flex;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    margin: 1px 0;
    top: 2px
}

.sale-price-basket .sale-price-desc {
    text-align: center
}

.sale-price-basket .sale-price {
    color: #f55600;
    font-size: 20px;
    margin-left: 5px
}

.card-product .card-product-inner .price-group .prices .sale-price-2 {
    color: #a7a7a7!important;
    font-size: 14px!important;
    font-weight: 400!important
}

.product-badges-card,.product-buttons-card,.product-pricescard {
    margin-top: 25px;
    margin-bottom: 10px;
    border: 0;
    background: #fff;
    border-radius: 0
}

.product-badges {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 0;
    margin: 20px 0
}

.product-badges .p-badge {
    height: 50px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all .3s ease
}

.product-badges .p-badge:hover {
    background: #e3f2f9;
    transform: translateY(-2px);
    border-color: #b0d4e3
}

.product-badges .p-badge i {
    font-size: 16px;
    margin-right: 6px;
    color: #4f6d7a
}

.product-badges .p-badge.domestic img {
    height: 24px
}

@media (max-width:768px) {
    .product-badges {
        flex-wrap: wrap;
        gap: 6px
    }

    .card-category .title {
        font-weight: 500;
        font-size: 11px;
        color: #181818;
        width: 55px;
        margin-top: -5px
    }

    .product-badges .p-badge {
        font-size: 13px;
        height: 45px;
        padding: 0 10px
    }

    .product-badges .p-badge i {
        font-size: 14px;
        margin-right: 5px
    }
}

.carousel-counter {
    background: #0000005c;
    width: fit-content;
    padding: 4px 15px;
    color: #fff;
    font-size: 13px;
    border-radius: 200px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2
}

.product-comment-mobil {
    display: none
}

.modal-questionpbc .modal-content .modal-header .close {
    font-size: 27px!important
}

.pbc-item2,.pbc-item99 {
    display: flex;
    flex-direction: column
}

.pbc-item2 {
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    padding: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    height: 100%;
    margin-bottom: 10px
}

.pbc-item-left99 img {
    border-radius: 0;
    margin-bottom: 5px
}

.pbc-item99 {
    align-items: left;
    gap: 5px;
    height: 75px;
    border: 1px solid #ebf5ff;
    border-radius: 8px;
    position: relative;
    background-color: #ebf5ff;
    color: #333;
    font-weight: 500;
    padding-top: 10px;
    padding-left: 10px
}

.pbc-item-top99 img,.pbc-question button img {
    border-radius: 0
}

.pbc-item-top99 span {
    margin-bottom: 5px
}

.pbc-item-bottom99 span {
    color: #a1a1a1;
    font-size: 11px;
    font-style: normal;
    font-weight: 400
}

.pbc-items .row .col-lg-6 {
    padding: 0 5px!important
}

.pbc-item,.pbc-question {
    display: flex;
    align-items: center
}

.pbc-item {
    flex-direction: row;
    gap: 10px;
    padding: 0 10px;
    height: 50px;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative
}

.pbc-question {
    position: absolute;
    right: 3%;
    bottom: 0;
    top: 0
}

.pbc-question button {
    outline: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    box-shadow: none
}

.pbc-question button:active,.pbc-question button:focus,.pbc-question button:target {
    outline: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none
}

.pbc-items .col-lg-6 {
    margin-bottom: 10px
}

.pbc-items .col-lg-6:nth-child(5),.pbc-items .col-lg-6:nth-child(6) {
    margin: 0
}

.breadcrumb-wrapper .breadcrumb .breadcrumb-item:last-child a {
    color: #333;
    font-family: "Poppins",sans-serif
}

.pbc-item-right span {
    line-height: normal;
    color: #000;
    font-size: 13px;
    font-family: "Poppins",sans-serif
}

.pbc-item-right span b {
    font-weight: 600;
    font-family: "Poppins",sans-serif
}

.product-detail-description {
    border-radius: 10px;
    border: 1px solid #f4f4f4;
    margin-bottom: 20px;
    background: #fff
}



.payment-page-adress-information-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 13px 15px;
    background: #e7ebf590;
    border-radius: 5px;
    margin-bottom: 25px;
    justify-content: space-between
}

.payment-page-adress-information-block-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 75%
}

.payment-page-adress-information-block-right {
    width: 25%;
    display: flex;
    justify-content: flex-end
}

.payment-page-adress-information-block-left-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.payment-page-adress-information-block-left-item span {
    color: #707c95;
    font-size: 13px;
    letter-spacing: -.24px;
    font-weight: 500
}

.payment-page-adress-information-block-right a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    color: #a6abb5;
    font-size: 12px;
    letter-spacing: -.24px;
    font-weight: 500
}

.payment-page-bodysection .p-g-b-c-1 .p-g-mod-body {
    background: 0 0!important
}

.payment-control-buttons-1 .btn-back {
    background-color: #efefef;
    border-color: #efefef
}

.product-quantity-type {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px
}

.product-widget-listem .widget-titlem {
    font-size: 10px;
    line-height: 18px;
    font-weight: 600;
    color: #999;
    letter-spacing: .05rem
}

.product-widget-listem-sayac {
    margin-top: 5px;
    margin-bottom: 10px
}

.product-widget-listem {
    padding-left: 5px
}

@media (max-width:768px) {
    .product-widget-listem {
        border: 0;
        border-radius: 0;
        padding: 8px
    }

    .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 12px;
        color: #a7a7a7;
        text-decoration: line-through!important
    }
}

.kategori-uclu-liste .itlewrtwrts {
    max-width: 100%;
    margin-left: 8px;
    line-height: 14px;
    height: 28px;
    font-weight: 400;
    font-size: 10px;
    color: #404040;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: block;
    text-align: left;
    background-color: #fff;
    z-index: 9999;
    margin-top: 5px
}

@media (max-width:767px) {
    .easy-autocomplete-container ul li div {
        display: block;
        font-size: 12px;
        padding: 4px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-height: 4em
    }

    .easy-autocomplete .spsi-item {
        align-items: center;
        display: flex;
        font-size: 12px
    }

    .spsi-item img {
        height: 35px;
        width: 35px;
        margin-right: 8px
    }

    .easy-autocomplete-container ul li {
        font-size: 12px;
        padding: 4px;
        border-bottom: 1px solid #ebebeb;
        cursor: pointer;
        transition: background-color .3s ease
    }

    .easy-autocomplete-container ul li:hover {
        background-color: #f5f5f5
    }

    .easy-autocomplete-container ul {
        max-width: 100%
    }
}

@media (min-width:768px) {
    .easy-autocomplete-container ul li div {
        display: flex;
        align-items: center;
        font-size: 16px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 600px
    }

    .easy-autocomplete .spsi-item img {
        height: 50px;
        width: 50px;
        margin-right: 15px
    }

    .easy-autocomplete-container ul li {
        font-size: 14px;
        padding: 5px 10px;
        border-bottom: 1px solid #ebebeb;
        cursor: pointer;
        transition: background-color .3s ease
    }

    .easy-autocomplete-container ul li:hover {
        background-color: #f5f5f5
    }

    .easy-autocomplete-container {
        top: 70px;
        max-width: 660px
    }
}

.easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb
}

.easy-autocomplete-container ul .eac-category {
    font-size: 13px;
    padding: 5px 10px;
    color: #666
}

.easy-autocomplete-container ul li {
    font-size: 14px;
    padding: 2px 5px;
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
    transition: background-color .3s ease
}

.easy-autocomplete-container ul li:hover {
    background-color: #f5f5f5
}

header.desktop .easy-autocomplete-container {
    top: 47px
}

.sidebar-menu-type-2 .easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
    top: 65px
}

.addons-mobile-menu ul li a .count,.search-bar {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0
}

.addons-mobile-menu ul li a .count {
    background: #14613a;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    height: 18px;
    max-width: 25px;
    min-width: 18px;
    right: 20%;
    text-align: center;
    top: 10%
}

.search-bar {
    top: 48px;
    width: 100%;
    box-sizing: border-box
}

.search-bar .input-box {
    display: block;
    width: 100%;
    margin: 0;
    position: relative
}

.search-bar .form-control {
    width: 100%;
    height: 45px;
    padding: 2px 5px 2px 40px!important;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd!important;
    outline: 0
}

@media (max-width:768px) {
    .btn.mobil-btn-2 {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 25px;
        background: #181818;
        color: #fff;
        border-radius: 10%;
        font-size: 16px;
        cursor: pointer;
        transition: background-color .3s ease
    }

    .search-bar .mobil-btn img {
        width: 20px;
        height: 20px;
        object-fit: contain
    }

    .search-bar .form-control {
        height: 40px!important;
        padding: 6px 40px!important;
        background: #f8f8f8;
        font-size: 12px;
        border-radius: 10px;
        border: 0!important;
        box-shadow: none;
        font-weight: 300
    }

    .search-bar .mobil-btn {
        position: absolute;
        top: 4px;
        left: -9px;
        background: 0 0;
        border: 0;
        cursor: pointer
    }
}

.search-bar .form-control::placeholder {
    color: #888;
    font-size: 12px;
    font-weight: 500
}

.btn.mobil-btn-2:hover {
    background-color: #333
}

.search-bar .mobil-btn {
    position: absolute;
    top: 4px;
    left: -5px;
    background: 0 0;
    border: 0;
    cursor: pointer
}

@media (min-width:900px) {
    .mm-alt,.subtitle-img {
        display: none
    }
}

.card-list-product .card-list-product-inner .info .title {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    font-size: 12px;
    height: 55px;
    line-height: 18px;
    max-width: 100%;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    margin-top: 5px;
    margin-left: -17px
}

.card-list-product .card-list-product-inner .price-group .prices .discount {
    color: #f6000d;
    font-size: 12px;
    padding-right: 15px;
    padding-top: -10px;
    margin-top: -20px
}

.card-list-product .card-list-product-inner .price-group .prices .list-price {
    color: #555;
    font-size: 12px;
    text-decoration: line-through;
    padding-right: 15px;
    padding-top: -10px
}

.card-list-product .card-list-product-inner .price-group .prices .sale-price {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding-right: 15px;
    padding-top: -10px;
    padding-bottom: 20px
}

.card-list-product .card-list-product-inner .image-wrapper .image {
    display: block
}

.card-list-product .product-reviews .count {
    color: #666;
    font-size: 10px;
    padding-left: 4px;
    padding-top: 3px
}

.card-list-product {
    overflow: hidden;
    border-radius: 5px;
    padding: 0!important;
    border: 1px solid #e9e9e9;
    margin: -5px
}

.row .custom-module-code-11205 {
    margin-top: 7px;
    margin-right: -2px;
    margin-left: -2px
}



.card-comment {
    padding: 10px 12px;
    border-radius: 10px;
    background-color: rgb(82 177 99/19%);
    border: 0;
    gap: 5px
}

.card-comment .product .customer .comment {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 12px;
    font-weight: 400;
    height: 66px;
    line-height: 16px;
    margin-top: 3px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden
}

.card-comment .product .image img {
    max-height: 100%;
    width: 70px
}

.card-comment .product .image {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
    height: 105px;
    margin-right: 8px;
    padding: 3px;
    width: 70px
}

#grid-card-list-product-inner {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 33.33% 33.33% 33.33%;
    gap: 5px;
    width: 50%;
    height: 50%
}

.card-list-product-inner-oge {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #000
}

#image-wrapper {
    grid-row: 1/3;
    grid-column: 1/2
}

#info {
    grid-row: 1/2;
    grid-column: 2/3
}

#price-group {
    grid-row: 1/2;
    grid-column: 3/4
}

#product-reviews {
    grid-row: 2/3;
    grid-column: 2/4
}

.etbis-etiket {
    height: 150px;
    width: 235px
}

.etbis-etiket .etbis-sol {
    width: 130px;
    height: 150px
}

.etbis-etiket .etbis-sag {
    width: 100px;
    height: 129px
}

.etbis-etiket .float-l {
    float: left
}

.etbis-etiket .float-r {
    float: right
}

.etbis-etiket .clear-son {
    clear: both
}

.p-g-mod-t-63 .p-g-mod-body {
    background: url(https://cdn.qukasoft.com/f/525751/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-7445786-sw1920sh500.webp)center!important;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 410px
}

.card-help-title .image img {
    max-width: 100%;
    max-height: 60px;
    width: 35px;
    height: 35px
}

.card-help-title {
    border-radius: 8px;
    padding: 12px 0;
    background: #e9e9e9
}

.email-newsletter-box .form-wrapper form input {
    border: 0!important;
    border-radius: 0!important;
    color: #000;
    flex: 1;
    font-size: 15px;
    font-weight: 500
}

@media (max-width:1366px) {
    .paysec-methods .item.small.one {
        margin-right: 10px
    }

    .payment-security-block .title-b h4 {
        margin-bottom: 8px;
        font-size: 12px
    }

    .paysec-methods .item img {
        width: 100%
    }

    .paysec-methods .items {
        gap: 12px 0
    }

    .payment-security-block .title-b ul {
        margin: 8px 0 0
    }

    .paysec-methods {
        margin-bottom: 20px
    }

    .paysec-methods .title {
        margin-bottom: 12px
    }

    .payment-security-block .title-b b,.payment-security-block .title-b li,.payment-security-block .title-b p {
        font-size: 10px;
        text-align: justify;
        line-height: 1.6
    }

    .payment-security-block .title-b h4 img {
        width: 22px
    }

    .paysec-methods .item.small img {
        width: 23px
    }

    .paysec-methods .item.small {
        font-size: 8px;
        padding: 6px 7px
    }

    .modal-dialog.ozel {
        right: 19%;
        top: 24%
    }

    .shipment-methods .method .name .info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px
    }

    header.desktop .mega-menu .nav-link {
        font-size: 12px
    }

    div#shareAge2 {
        right: -13.4%
    }

    #shareModal2 {
        top: 35.9%
    }

    .card-product:hover .down-to-top {
        bottom: -209px!important
    }
}

.payment-boxs-right {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.payment-security-block,.payment-summary-box {
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 10px
}

.payment-summary-box .p-g-mod-body {
    padding: 0!important
}

.payment-summary-box .p-g-mod:last-child {
    margin: 0
}

.payment-body .payment-summary-box .payment-final-buttons-1 {
    padding: 0
}

.payment-summary-box .p-list-button {
    padding: 0 0 6px
}

.payment-security-block .guvenlik-aciklama-h4 h4,.payment-security-block .title-b h4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #4dc762;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px
}

.payment-security-block .title-b li,.payment-security-block .title-b p {
    color: #575757;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.payment-security-block .title-b b,.payment-security-block .title-b span {
    font-size: 12px;
    font-style: normal;
    line-height: 150%;
    font-weight: 500;
    color: #000
}

.payment-final-buttons-1 {
    display: block
}

.payment-security-block .title-b span {
    color: #4dc762;
    font-weight: 400
}

.paysec-methods .title {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px
}

.paysec-methods .items {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.paysec-methods .item img {
    border-radius: 0
}

.payment-security-block .title-b ul {
    padding: 0 0 0 20px;
    margin: 12px 0 0
}

.paysec-methods {
    margin-bottom: 20px
}

.paysec-methods .item.small {
    color: #000;
    font-size: 9px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    padding: 10px 15px;
    gap: 13px
}

.payment-security-block.basket-page {
    margin-top: 11px;
    border-color: #e7ebf5
}

@media (max-width:991px) {
    .payment-security-block.basket-page {
        border-color: #e7ebf5
    }

    .payment-boxs-right {
        flex-direction: column-reverse;
        gap: 20px
    }
}

.basketp-stepalert {
    padding: 12px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins",sans-serif;
    word-wrap: break-word;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.05)
}

.basketp-stepalert img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: .9
}

.basketp-stepalert span {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .2px;
    text-align: left
}

.basketp-stepalert b {
    color: #4caf50;
    font-weight: 500
}

@media (max-width:768px) {
    .basketp-stepalert {
        padding: 10px 15px;
        font-size: 13px;
        gap: 10px
    }

    .basketp-stepalert img {
        width: 20px;
        height: 20px
    }
}

.payment-page-title-block2 .payment-page-title-guvenh4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -.03em;
    color: #333
}

.tilbe-sub9987 {
    font-size: 13px;
    font-weight: 400;
    color: #a1a1a1;
    text-align: center;
    margin-bottom: 10px
}

.payment-page-title-block {
    margin-top: 0;
    padding-bottom: 0
}

.payment-page-title-block,.payment-page-title-block2,.shipment-methods .method {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.payment-page-title-block img,.payment-page-title-guven {
    margin-left: 10px;
    max-height: 25px;
    max-width: 100%;
    margin-top: -5px
}

.payment-page-title-block img {
    margin-top: 0
}

.payment-page-title-block h4 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 20px;
    color: #333;
    letter-spacing: -.36px;
    font-weight: 500
}

@media (max-width:1200px) {
    .payment-page-title-block h4 {
        font-size: 17px
    }
}

.pattern-group .p-g-mod .p-g-mod-header {
    border-bottom: none
}

.payment-page-bodysection .p-g-b-c-0 .p-g-mod-header .p-g-m-h-info {
    justify-content: flex-start!important;
    align-items: flex-start!important
}

.payment-page-bodysection .p-g-b-c-0 .p-g-mod-header {
    height: auto;
    padding: 0;
    border: 0
}

.shipment-methods .method .name .image {
    margin-right: 10px
}

.shipment-methods .method .checkbox {
    margin: 0
}

.shipment-methods .method .name {
    float: unset!important;
    width: 100%;
    max-width: fit-content;
    margin-right: 20px
}

.shipment-methods .method:hover {
    background: #e9eff3;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.payment-page-bodysection .p-g-b-c-0 .p-g-mod-body {
    background: transparent !important;
    padding: 0
}

.shipment-methods {
    display: flex;
    gap: 10px
}

@media (max-width:768px) {
    .discount-section {
        padding: 10px 5px 1px 20px;
        margin: 15px 0 20px
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .discount-section {
        padding: 10px 5px 1px 20px;
        margin: 15px 0 20px
    }
}

@media (min-width:1025px) and (max-width:1200px) {
    .discount-section {
        padding: 10px 5px 1px 20px;
        margin: 15px 0 20px
    }
}

@media (min-width:1201px) {
    .discount-section {
        padding: 10px 5px 1px 20px;
        margin: 15px 0 20px
    }
}

@media (max-width:768px) {
    .shipment-methods {
        flex-direction: column
    }

    .kampanya-slider-container {
        width: 98%;
        border: 1px solid #e7ebf5;
        padding: 1px;
        border-radius: 10px;
        margin-top: -20px
    }

    .kampanya-item {
        max-width: 98%;
        padding: 5px 15px
    }

    .easy-autocomplete {
        width: 100%!important
    }
}

.shipment-methods .method {
    flex: 1 1 calc(50% - 10px);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    gap: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    transition: background .3s ease;
    background: #f5f7f9;
    border-bottom: 1px solid rgba(0,0,0,.07);
    cursor: pointer;
    justify-content: flex-start
}

.payment-steps-1 {
    align-items: center;
    background-color: #fff
}

.payment-steps-1 .step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 0;
    transition: all .3s ease;
    color: #333
}

.payment-steps-1 .step .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    padding: 5px
}

.payment-steps-1 .step .circle img {
    max-width: 30px;
    max-height: 30px
}

.payment-steps-1 .step.active .circle,.payment-steps-1 .step.completed .circle {
    background-color: #e8f8ea
}

.payment-steps-1 .step.active,.payment-steps-1 .step.completed {
    color: #31ab45
}

.payment-steps-1 .step:last-child::after {
    display: none
}

@media (max-width:768px) {
    .payment-steps-1 {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 8px
    }

    .payment-steps-1 .step {
        padding: 8px 4px
    }

    .payment-steps-1 .step .circle {
        width: 35px;
        height: 35px
    }

    .payment-steps-1 .step .circle img {
        max-width: 22px;
        max-height: 18px
    }
}

.swiper.swiper-sepet-kargo {
    width: 100%!important
}

.free-cargo .navigation-yk button {
    width: 20px;
    height: 20px
}

.free-cargo .navigation-yk button i,.tool-filter .filterCat .filter-wrap .filter-item label {
    font-size: 12px
}

.free-cargo .navigation-yk button.next {
    right: -10px
}

.yonkasoft-header .header-wrap .menu-group,header .head-menu {
    gap: 10px
}

.free-cargo .free-cargo-box {
    flex-direction: column
}

.yonkasoft-header .header-wrap .header-middle-item {
    flex: 1
}

.free-cargo .cargo-firma .text {
    margin-bottom: 10px
}

.free-cargo .cargo-firma .logo img,.yonkasoft-product-detail .p-for-wrap .p-for-detail .p-for-detail-wrap .p-for-item.product-evaluation .d-flex a img {
    width: 20px
}

.free-cargo .cargo-firma .logo .item {
    padding: 7px 10px
}

.free-cargo .icon img {
    width: 40px
}

.free-cargo .cargo-firma,.free-cargo .free-cargo-box,.free-cargo .odeme-box {
    width: 100%;
    padding: 0 10px
}

.free-cargo .cargo-odeme-flex {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    position: relative;
    flex-direction: row
}

.free-cargo .text .ust {
    text-align: unset;
    font-size: 14px;
    line-height: 20px
}

.free-cargo .text .ALT {
    font-size: 12px;
    line-height: 18px;
    margin: 0
}

.free-cargo .text .ALT span {
    font-size: 12px!important
}

.basket-featured-slider .swiper .swiper-slide .basket-item {
    font-size: 12px
}

.free-cargo .cargo-firma,.free-cargo .free-cargo-box,.free-cargo .odeme-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
    flex: 1
}

.free-cargo .cargo-firma:last-child,.free-cargo .free-cargo-box:last-child,.free-cargo .odeme-box:last-child {
    border-right: none
}

.campaign-area .swiper-basket-campaign .swiper-slide,.free-cargo .cargo-odeme-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.free-cargo .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.navigation-yk button {
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    padding: 0;
    transform: translate(0,-50%);
    z-index: 999;
    color: #000;
    top: 50%;
    transition: .3s;
    background: #fff;
    border: 1px solid #e0e0e0
}

.navigation-yk button.prev {
    left: -15px
}

.navigation-yk button.next {
    right: -15px
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper.swiper-sepet-kargo .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .free-cargo .free-cargo-box {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px
    }
}

.free-cargo .swiper-wrapper,.urun-info-container {
    display: flex;
    justify-content: space-between
}

.urun-info-container {
    align-items: center;
    flex-wrap: wrap;
    margin-top: -4px
}

.product-body .product-profile-info li {
    display: flex;
    margin: 3px 0
}



.urun-info-container-alt {
    border-bottom: 1px solid rgba(0,0,0,.1);
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box
}

.urun-info-container .urun-satis-miktar1 {
    font-size: 16px;
    color: #333
}

.urun-info-container .color-red {
    color: red
}

@media (max-width:768px) {
    .urun-info-container .urun-satis-miktar1 {
        font-size: 16px
    }

    .urun-info-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1px
    }
}

.unique-info-container {
    width: 100%;
    max-width: 400px;
    margin: 0;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    height: 30px
}

.unique-info-container .unique-info-wrapper {
    display: flex;
    flex-direction: column;
    animation: unique-slideUp 25s infinite ease-in-out
}

.product-profile-1 .product-reviews .rating {
    font-size: 24px;
    color: #000;
    margin-right: 5px
}

.product-profile-1 .product-reviews .rating-text {
    font-size: 18px;
    color: #000
}

.product-reviews .stars .star.fill {
    color: #ffc000
}

.product-profile-1 .product-reviews .count {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    font-size: 14px;
    color: #333;
    font-weight: 500
}

.product-profile-1 .product-reviews .count img {
    margin-top: -3px;
    margin-left: 7px
}

.product-profile-1 .product-reviews .review-icon {
    width: 17px;
    height: auto;
    margin-bottom: 3px
}

.product-profile-1 .product-reviews .count a,.product-profile-1 .product-reviews .count b {
    font-size: 14px;
    color: #707070;
    text-decoration: none;
    font-weight: 500
}

.product-profile-1 .product-reviews .count b {
    color: #000
}

.unique-info-container .unique-info-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    font-size: 20px;
    color: #333;
    gap: 8px;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

.unique-info-container .unique-info-box span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: "Poppins",sans-serif
}

.shopping-cart-1 .td-price {
    text-align: center
}

.shopping-cart-1 .td-product .product .image {
    margin: 5px
}

.ana-jssocial-sh a,.cart-product-row {
    display: flex;
    align-items: center;
    padding: 0
}

.cart-product-row {
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    height: auto
}

.cart-product-row .td-product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 auto
}

.cart-product-row .td-price,.cart-product-row .td-quantity,.cart-product-row .td-total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto
}

@media (min-width:1024px) {
    .cart-product-row .td-product {
        flex: 0 1 60%;
        max-width: 60%
    }

    .cart-product-row .td-price,.cart-product-row .td-quantity,.cart-product-row .td-total-price {
        flex: 0 1 20%;
        max-width: 20%;
        box-sizing: border-box
    }
}

.promotion-product-item-card-x123 {
    border-radius: 68px;
    border: solid 1px #e6e6e6;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    transition: .5s;
    position: relative;
    background: #fff
}

.promotion-product-item-card-x123.best-deal-x123 {
    border: 1px solid transparent;
    background-image: linear-gradient(#fff,#fff),linear-gradient(90deg,#ffad70,#ff4988);
    background-origin: border-box;
    background-clip: content-box,border-box
}

.best-deal-badge-x123 {
    background: linear-gradient(90deg,#f96 0,#ff5e62 100%);
    top: -6px;
    left: 185px;
    transform: translateY(-50%);
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
    padding: 4px 8px;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center
}

.best-deal-badge-x123 i {
    margin-right: 5px;
    margin-left: 5px
}


.static-badge-x123 {
    background: linear-gradient(90deg, #4fd1c5 0%, #38b2ac 100%);
    top: -6px;
    left: 20px; /* indirim badge’in soluna */
    transform: translateY(-50%);
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
    padding: 4px 8px;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
}

.static-badge-x123 i {
    margin-right: 5px;
    margin-left: 5px;
    color: #fff;
}



.kupon-kampanya-sade {
    background: #f6fff5;
    box-shadow: inset 0 4px 8px rgba(0,0,0,.1);
    border-radius: 8px;
    padding: 14px 24px;
    margin-bottom: 20px;
    color: #4dc761;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto
}

.kupon-kampanya-sade i {
    margin-right: 6px;
    color: #4dc761
}

.kupon-kampanya-sade small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #4dc761
}

@media (max-width:768px) {
    .kupon-kampanya-sade {
        padding: 12px 16px;
        font-size: 14px
    }

    kampanya-wrap-99x {
        border: 0;
        border-radius: 0;
        padding: 0;
        background: #fff
    }

    .kupon-kampanya-sade small {
        font-size: 12px
    }
}

.cart-product-row:hover {
    background-color: #fff
}

@media (max-width:768px) {
    .shopping-cart-1 .table tr .td-total-price {
        float: right;
        width: 25%;
        position: relative;
        bottom: 50px;
        right: 0
    }

    .shopping-cart-1 .table tr .td-total-price .old-value {
        color: #333;
        font-size: 10px;
        padding-bottom: 0;
        margin-right: 20px;
        font-weight: 300
    }

    .shopping-cart-1 .table tr .td-total-price .value {
        font-size: 16px;
        color: #333
    }
}

.shopping-cart-1 {
    border: 0;
    border-radius: 5px
}

@media (max-width:768px) {
    .shopping-cart-1 {
        background: transparent !important;
        border-radius: 10px;
        box-shadow: none!important
    }
}

.shopping-cart-1 .table-responsive {
    width: 100%;
    overflow-x: inherit;
}

.shopping-cart-1 .table-hover {
    width: 100%;
    background: #fff;
    border-radius: 10px
}

.shopping-cart-1 .th-cargo,.shopping-cart-1 .th-price,.shopping-cart-1 .th-product,.shopping-cart-1 .th-quantity,.shopping-cart-1 .th-total-price {
    padding: 5px;
    text-align: center;
    border-right: 1px solid #e7ebf5;
    font-weight: 600;
    color: #333;
    background: #fefefe;
    border-bottom: none
}

.shopping-cart-1 .td-product .product {
    display: flex;
    align-items: center;
    position: relative
}

@media (max-width:767px) {
    .shopping-cart-1 .td-product .image img {
        border: 1px solid #e7e7e7;
        border-radius: 5px
    }
}

@media (max-width:768px) {
    .shopping-cart-1 .td-product .product .p-info .name {
        color: #333!important;
        font-size: 12px;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: -22px;
        line-height: 20px
    }
}

.shopping-cart-1 .td-total-price .old-value {
    color: #666;
    display: block;
    font-size: 12px;
    text-decoration: line-through;
    padding-bottom: 35px;
    margin-right: -57px
}

@media (max-width:767px) {
    .td-total-price .value {
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        color: #333;
        margin-top: -5px
    }
}

.shopping-cart-1 .td-product .image img {
    padding: 2px;
    margin-right: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 5px
}

.shopping-cart-1 .shopping-buttons-1 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between
}

.cart-body .td-price input.form-control {
    border-top: 1px solid #4dc761!important;
    border-bottom: 1px solid #4dc761!important
}

.cart-body a.btn.btn-minus,.cart-body a.btn.btn-plus {
    border-top: 2px solid #4dc761!important;
    border-bottom: 2px solid #4dc761!important
}

.cart-body a.btn.btn-plus {
    border-right: 1px solid #4dc761!important
}

.cart-body .btn.btn-minus,.cart-body .product-quantity .btn.btn-plus {
    background: #4dc761!important;
    color: #fff;
    border-color: #4dc761
}

.table-hover tbody tr {
    border-radius: 10px;
    background-color: #fff!important
}

.tilbecartbody {
    display: flex;
    border: 1px solid #e2e2e2!important;
    border-radius: 10px;
    margin-bottom: 10px
}

.table-hover {
    width: 100%
}

@media (max-width:767px) {
    .table-hover tbody tr {
        display: block;
        padding: 1px;
        margin-bottom: 15px
    }

    .table-hover tbody td {
        display: block;
        width: 100%;
        text-align: left
    }
}

.table-hover tbody tr:hover {
    background-color: #fff!important;
    transition: background .3s ease-in-out
}

@media (max-width:767px) {
    .product-quantity,.product-quantity-type {
        justify-content: flex-start
    }
}

.cart-body a.btn.btn-minus {
    border-left: 1px solid #4dc761!important
}

.cart-body .btn.btn-minus {
    border-color: #4dc761!important
}

@media (min-width:768px) {
    .shopping-cart-1 .td-product .product .p-info .name {
        font-size: 14px;
        font-weight: 400;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 55ch;
        line-height: 1.4
    }

    .paysec-methods .item.small {
        color: #000;
        font-size: 9px;
        font-weight: 500;
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 1px solid #e2e2e2;
        border-radius: 5px;
        padding: 10px 5px;
        gap: 13px
    }
}

.shopping-cart-1 .btn-continue {
    background: #4dc761;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none
}

.shopping-cart-1 .btn-continue:hover {
    background: #3aa14b
}

.unique-info-container .icon-style {
    font-size: 18px;
    color: #f27a1a
}

@media screen and (max-width:768px) {
    .unique-info-container .unique-info-box span {
        display: block;
        width: 100%;
        font-size: 13px;
        font-weight: 500;
        color: #333;
        font-family: "Poppins",sans-serif
    }

    .product-profile-1 .product-reviews .review-icon {
        width: 17px;
        height: auto;
        margin-bottom: 0
    }
}

.ana-shareAge {
    position: absolute;
    right: 10px;
    top: -10px;
    box-shadow: rgba(0,0,0,.05)0 1px 2px 0;
    border-radius: 50%;
    padding: 10px;
    background: #fff
}

.ana-modal-box {
    position: absolute;
    z-index: 999;
    top: 10px;
    right: 20px
}

.ana-modal-inside {
    position: relative;
    left: 0
}

.ana-modal-box {
    display: none
}

.ana-overlayAge {
    display: none;
    position: fixed;
    width: 100%;
    background: #65656585;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 123;
    cursor: pointer
}

.ana-jssocial-sh {
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.ana-jssocial-sh a {
    border-radius: 50%!important;
    border: 1px solid #a1a1a1;
    width: 44px;
    height: 44px;
    margin: 0
}

.ana-jssocial-sh-link:active,.ana-jssocial-sh-link:focus,.ana-jssocial-sh-link:hover {
    background: #a1a1a1!important
}

.ana-shareLink {
    width: 76.9%;
    outline: 0;
    border: 1px solid #333;
    float: left;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

.ana-copyD,.ana-modal-inside .ana-close {
    display: flex;
    align-items: center;
    justify-content: center
}

.ana-copyD {
    background: #333;
    height: 31px;
    color: #fff;
    font-weight: 500;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.ana-copyArea {
    display: flex;
    margin-top: .3rem
}

.ana-modal-inside .ana-close {
    font-size: 1rem;
    color: #000;
    background: #fff;
    z-index: 123;
    right: 10px;
    position: absolute;
    top: 11px;
    opacity: 1;
    padding: 18px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: rgba(0,0,0,.05)0 1px 2px 0
}

.ana-modal-inside .ana-close img {
    max-width: 18px
}

.ana-modal-inside .ana-close:hover {
    opacity: 1!important
}

.ana-modal-inside {
    background: #fafafa;
    max-width: 245px;
    width: 245px;
    max-height: 240px;
    z-index: 124;
    border-radius: 100px;
    padding: 0 2px;
    transform: translateZ(0);
    margin: 0 auto;
    border: 1px solid #e2e2e29c;
    box-shadow: rgba(0,0,0,.05)0 1px 2px 0;
    top: -14px;
    right: -20px
}

.ana-social-sh.jssocials {
    margin-bottom: 1rem
}

.ana-detail-title {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.ana-social-sh {
    padding: 5px 0;
    display: flex;
    align-items: center
}

.ana-social-sh a {
    padding: 5px;
    text-decoration: none!important
}

.ana-social-sh img {
    border-radius: 50px
}

.ana-share-icon {
    padding: 5px 10px
}

.ana-tooltip {
    position: inherit!important;
    opacity: 1!important
}

.ana-tooltip .ana-tooltiptext {
    text-align: center;
    padding: 5px
}

.ana-tooltip:hover .ana-tooltiptext {
    visibility: visible;
    opacity: 1
}

.ana-tooltip .ana-copy-status {
    background: #181818;
    color: #fff;
    position: absolute;
    right: 45px;
    bottom: -36px;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    opacity: 0
}

.ana-tooltip-2 .ana-tooltiptext-2 {
    border: 2px solid #fff;
    padding: 9.6px 45px;
    background: #fff;
    border-radius: 5px;
    color: #982469;
    margin-right: -11px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    font-weight: 500
}

.ana-tooltip-2 .ana-copy-status-2 {
    border: 2px solid #fff;
    padding: 9.4px 15px;
    border-radius: 5px;
    background: #982469!important;
    color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 500
}

.itlewrtwrts {
    max-width: 100%;
    line-height: 14px;
    height: 30px;
    font-weight: 400;
    font-size: 11px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: block;
    text-align: left;
    background-color: #fff;
    z-index: 9999;
    padding: 2px 7px;
}

.card-product .card-product-inner .buttons {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 5px 0 10px
}

.product-reviews .stars .star.fill .dark {
    color: #f0f0f0;
    margin-left: 0
}

.product-reviews .stars .star.fill .fa-star-half {
    position: absolute;
    bottom: 0
}

.card-product .product-reviews {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 7px 12px 1px 12px;
    line-height: 12px;
    gap: 2px;
}

.card-list-product .product-reviews {
    justify-content: center;
    display: flex;
    line-height: 8px;
    margin: 5px 0 10px 10px;
    color: #bfbfbf;
    font-size: 12px
}

.product-profile-1 .product-reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 2.5em;
    padding-right: 8px
}

.btn-category-load-more {
    background: #fefefe;
    border: 1px solid #dedede;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 15px auto;
    padding: 10px;
    text-align: center;
    width: 100%
}

.card-product .card-product-inner .product-label.top-left {
    left: 4px;
    margin-bottom: 5px;
    top: 63px
}

.product-profile-1 .product-label.bottom-left img {
    width: 60px;
    height: 60px;
    top: 5px;
    left: 5px
}

#discount-toggle,.masaustu1-alani-gizle10,.masaustugizle-sepet-alani985 {
    display: none
}

@media (max-width:768px) {
    .masaustugizle-sepet-alani985 {
        display: block
    }

    .mobil-alani-gizle10 {
        display: none
    }

    .masaustu1-alani-gizle10 {
        display: block
    }

    .kampanya-wrap-99x {
        border: 0;
        border-radius: 0;
        padding: 0;
        background: #fff
    }

    .sepet-baslik-h42sdf1 {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -.03em;
        color: #181818
    }
}

@media screen and (max-width:768px) {
    .product-installments table tr {
        display: table-row!important
    }

    .product-installments table td {
        display: table-cell!important;
        width: auto!important;
        text-align: left!important
    }
}

.sepet-baslik-h42sdf1 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -.03em;
    color: #181818
}

.discount-section {
    width: 100%;
    background: #fff;
    border: 1px solid #e7ebf5;
    border-radius: 10px;
    padding: 10px 5px 1px 20px;
    text-align: center;
    margin: 15px 0 20px
}

.indirim-mesaj-blok {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9
}

.flash-indirim-mesaj {
    font-weight: 700;
    margin-bottom: .5rem;
    color: #f27a1a
}

.adet-indirim-mesaj,.free-shipping-message strong {
    color: #4dc762
}

.discount-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    line-height: 31px;
    background: #fff;
    border-radius: 10px;
    transition: background .3s ease;
    gap: 5px;
    letter-spacing: -.03em;
    color: #333
}

.discount-icon {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.plus-icon {
    font-size: 18px;
    font-weight: 700;
    transition: transform .3s ease
}

.discount-header:hover {
    background: #fff
}

.hidden-summary-box {
    display: none;
    padding: 1px;
    border-top: 1px solid #e2e2e2
}

.hidden-summary-box p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -.28px;
    color: #a5a5a5;
    margin: 10px;
    text-align: left
}

#discount-toggle:checked+.discount-header+.hidden-summary-box {
    display: block
}

#discount-toggle:checked+.discount-header .plus-icon {
    transform: rotate(45deg)
}

.de5d4fg54df1gsktop-only {
    display: block
}

@media (max-width:768px) {
    .de5d4fg54df1gsktop-only {
        display: none
    }
}

.cart-recommended-products {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px
}

.cart-recommended-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center
}

.cart-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center
}

.cart-product-card {
    width: 22%;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    text-align: center;
    transition: transform .2s ease-in-out
}

.cart-product-card:hover {
    transform: scale(1.05)
}

.cart-product-image img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px
}

.cart-product-info {
    margin-top: 10px
}

.cart-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: block;
    height: 35px;
    overflow: hidden
}

.cart-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #e60000;
    margin-top: 5px
}

@media (max-width:768px) {
    .cart-product-list {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px
    }

    .cart-product-card {
        width: 80%;
        min-width: 180px;
        display: inline-block;
        margin-right: 10px
    }

    .cart-product-name {
        font-size: 12px;
        height: auto
    }

    .cart-product-price {
        font-size: 14px
    }
}

.sepetteki-urunler-baslik {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    font-weight: 600;
    color: #333
}

.sepetteki-urunler-baslik i {
    color: #333;
    margin-right: 15px;
    font-size: 24px
}

.sepetteki-urunler-baslik .mesaj {
    font-size: 18px
}

.free-shipping-message,.sepet-indirim-mesaji {
    display: flex;
    align-items: center;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 15px 15px 5px;
    border-radius: 8px;
    margin-top: 11px
}

.free-shipping-message i,.sepet-indirim-mesaji i {
    font-size: 15px;
    margin-right: 8px;
    color: #4dc762
}

@media (max-width:768px) {
    .extra-advantage,.limited-time-offer {
        order: -1;
        margin-top: 0
    }
}

.login-body .p-g-mod-t-4 .checkout-login-container {
    margin: 0 auto;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08)
}

.login-body .p-g-mod-t-4 .checkout-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center
}

.checkout-header {
    margin-top: -8px
}

.login-body .p-g-mod-t-4 .checkout-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 20px
}

.login-body .p-g-mod-t-4 .guest-checkout {
    text-align: center;
    margin-bottom: -5px;
    margin-top: 25px
}

.login-body .p-g-mod-t-4 .btn-without-login {
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #fff;
    color: #28a745;
    border: 2px solid #28a745;
    transition: all .3s ease-in-out;
    font-weight: 600
}

.login-body .p-g-mod-t-4 .btn-without-login:hover {
    background: #28a745;
    color: #fff;
    box-shadow: 0 3px 6px rgba(40,167,69,.2)
}

.login-body .p-g-mod-t-4 .guest-info {
    font-size: 13px;
    color: #888;
    margin-top: 6px
}

.login-body .p-g-mod-t-4 .form-group {
    margin-bottom: 18px
}

.login-body .p-g-mod-t-4 .form-control {
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    padding: 12px;
    transition: border .3s ease-in-out
}

.login-body .p-g-mod-t-4 .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 6px rgba(40,167,69,.2);
    outline: 0
}

.login-body .p-g-mod-t-4 .login-form input,.login-body .p-g-mod-t-4 .register-form input {
    display: block;
    margin-bottom: 15px;
    background-color: #fff!important
}

.membership-info {
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e6e6e6
}

.membership-info h4 {
    font-size: 26px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid #007bff;
    padding-bottom: 10px
}

.membership-advantages ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #555
}

.membership-advantages li {
    margin-bottom: 12px;
    display: flex;
    align-items: center
}

.payment-agreement-checbox-1.sozlesme-kenarlik {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 25px 15px
}

.payment-agreement-checbox-1 a {
    font-weight: 500;
    font-size: 12px;
    color: #333
}

.form-check-inline.mesaj02 {
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0
}

.membership-advantages i {
    color: #28a745;
    margin-right: 12px;
    font-size: 20px
}

.easy-signup,.loyalty-program,.return-policy,.security-info,.special-offers {
    margin-bottom: 30px
}

.easy-signup p,.loyalty-program p,.return-policy p,.security-info p,.special-offers p {
    font-size: 16px;
    line-height: 1.5;
    color: #555
}

.customer-support {
    background-color: #f1f7fc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #c0d6e4;
    box-shadow: 0 4px 12px rgba(0,0,0,.05)
}

.customer-support h4 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 20px
}

.customer-support a,.whatsapp-link {
    color: #007bff;
    text-decoration: none
}

.customer-support a:hover,.login-body .p-g-mod-t-4 .forgot-password:hover,.login-body .p-g-mod-t-4 .forgot-passwords:hover,.whatsapp-link:hover {
    text-decoration: underline
}

.whatsapp-link {
    font-weight: 700;
    color: #25d366
}

@media (max-width:768px) {
    .membership-info {
        padding: 20px
    }

    .membership-info h4 {
        font-size: 22px
    }

    .membership-advantages ul {
        padding-left: 20px
    }

    .customer-support {
        padding: 15px
    }
}

.login-body .p-g-mod-t-4 .forgot-password,.login-body .p-g-mod-t-4 .forgot-passwords {
    text-align: right;
    font-size: 13px;
    color: #28a745;
    text-decoration: none;
    margin-bottom: 15px
}

.forgot-password,.forgot-passwords {
    display: inline-block;
    margin-right: 15px
}

.login-body .p-g-mod-t-4 .forgot-passwords {
    text-align: left
}

.login-body .p-g-mod-t-4 .btn-success {
    background: #36b252;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    font-weight: 600;
    width: 100%
}

.login-body .p-g-mod-t-4 .btn-success:hover {
    background: #218838;
    box-shadow: 0 3px 6px rgba(40,167,69,.2)
}

.login-body .p-g-mod-t-4 .checkout-tabs {
    margin-bottom: 25px
}

.login-body .p-g-mod-t-4 .nav-tabs {
    display: flex;
    justify-content: center;
    border: 0;
    gap: 0;
    padding: 1px 0 0
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-link {
    padding: 12px 50px;
    font-size: 15px;
    font-weight: 600;
    color: #333e48;
    border-radius: 13px;
    flex: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6
}

.a4fgh-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.a4fgh-checkbox-group input[type=checkbox] {
    margin-right: 12px;
    width: 18px;
    height: 18px
}

.a4fgh-checkbox-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    cursor: pointer;
    display: inline-block
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-link.active {
    background-color: #fff;
    z-index: 1;
    transform: scaleX(1.2);
    border: 1px solid #dee2e6
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-link:not(.active) {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    position: relative
}

.x9sdfkfj {
    padding: 10px 0 30px;
    font-family: Arial,sans-serif;
    text-align: center
}

.login-title-3kfdks {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #a1a1a1
}

.social-buttons-sjkd9 {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.btn-78dfgj,.btn-89kfdg,.btn-98sfjd {
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    flex-grow: 1;
    transition: background-color .3s;
    background-color: #3b5998
}

.btn-78dfgj i,.btn-89kfdg i,.btn-98sfjd i {
    font-size: 20px
}

.btn-78dfgj:hover {
    background-color: #2d4373
}

.btn-89kfdg,.btn-98sfjd {
    background-color: #db4437
}

.btn-89kfdg:hover {
    background-color: #c1351d
}

.btn-98sfjd {
    background-color: #000
}

.btn-98sfjd:hover {
    background-color: #333
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-link:hover {
    background: #fff;
    color: #28a745
}

.login-body .p-g-mod-t-4 .tab-content {
    padding: 20px
}

.login-body .p-g-mod-t-4 .social-login {
    text-align: center;
    margin-top: 18px
}

.login-body .p-g-mod-t-4 .social-login p {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px
}

.login-body .p-g-mod-t-4 .social-login .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all .3s ease-in-out
}

.login-body .p-g-mod-t-4 .btn-facebook {
    background: #3b5998;
    color: #fff
}

.login-body .p-g-mod-t-4 .btn-facebook:hover {
    background: #2d4373
}

.login-body .p-g-mod-t-4 .btn-google {
    background: #db4437;
    color: #fff
}

.login-body .p-g-mod-t-4 .btn-google:hover {
    background: #c1351d
}

.login-body .p-g-mod-t-4 .social-login .btn i {
    font-size: 18px;
    margin-right: 8px
}

.forgot-password-container {
    margin: 2px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    text-align: center;
    padding: 30px
}

.forgot-password-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 8px
}

.forgot-password-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.forgot-password-input {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    padding: 12px;
    transition: border .3s ease-in-out;
    width: 100%
}

.forgot-password-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 6px rgba(40,167,69,.2);
    outline: 0
}

.forgot-password-btn {
    background: #28a745;
    color: #fff;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    font-weight: 600;
    width: 100%;
    border: 0;
    cursor: pointer
}

.forgot-password-btn:hover {
    background: #218838;
    box-shadow: 0 3px 6px rgba(40,167,69,.2)
}

.forgot-password-info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px
}

.forgot-password-info {
    width: 48%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.forgot-password-info i,.password-reset-info i {
    font-size: 20px;
    color: #28a745;
    margin-right: 8px
}

@media (max-width:768px) {
    .forgot-password-container {
        max-width: 100%;
        padding: 20px
    }

    .login-body .p-g-mod-t-4 .tab-content {
        padding: 0
    }

    .login-body .p-g-mod-t-4 .nav-tabs .nav-link {
        padding: 12px 46px;
        font-size: 15px
    }

    .forgot-password-info {
        width: 100%
    }
}

@media (min-width:768px) {
    .login-body.p-g-mod-t-4 {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,.1)
    }
}

.password-reset-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 25px;
    background: #e3f2fd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    text-align: center
}

.password-reset-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 8px
}

.password-reset-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px
}

.password-reset-form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.password-reset-input {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    padding: 12px;
    transition: border .3s ease-in-out;
    width: 100%
}

.password-reset-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 6px rgba(40,167,69,.2);
    outline: 0
}

.password-reset-btn {
    background: #28a745;
    color: #fff;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    font-weight: 600;
    width: 100%;
    border: 0;
    cursor: pointer
}

.password-reset-btn:hover {
    background: #218838;
    box-shadow: 0 3px 6px rgba(40,167,69,.2)
}

.password-reset-info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px
}

.password-reset-info {
    width: 48%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .password-reset-container {
        max-width: 100%;
        padding: 20px
    }

    .password-reset-info {
        width: 100%
    }

    .login-body.p-g-mod-t-4 {
        background: #fff;
        border-radius: 10px;
        padding: 20px 15px 25px;
        margin: 20px 5px 10px;
        border: 1px solid #e6e6e6
    }

    .pattern-group .p-g-mod .p-g-mod-body {
        padding: 1px
    }
}

.cat-responsive-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
    box-sizing: border-box;
    margin: 1px 0
}

.cat-responsive-buttons .btn-group {
    display: flex;
    width: 100%
}

.kategori-uclu-liste .owl-wrapper .card-product .card-product-inner .price-group .prices .sale-price {
    font-size: 10px;
    font-weight: 600;
    color: #000;
    margin-left: 4px
}

@media (max-width:767px) {
    .kategori-uclu-liste .card-product .card-product-inner .buttons .btn-cart {
        font-size: 10px
    }
}

@media (max-width:768px) {
    .kategori-uclu-liste .owl-wrapper .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 9px;
        color: #a7a7a7;
        font-weight: 500;
        text-decoration: line-through!important
    }
}

.cat-responsive-buttons .btn-group .btn {
    flex: 1;
    font-size: 16px;
    padding: 8px 0;
    transition: all .3s ease
}

.cat-responsive-buttons .btn-group .btn:hover {
    background-color: #333;
    color: #fff
}

.cat-responsive-buttons .btn-group .btn:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px
}

.cat-responsive-buttons .btn-group .btn:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px
}

cat-responsive-buttons .cat-responsive-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0-2px 10px rgba(0,0,0,.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform .3s ease-in-out
}

cat-responsive-buttons .cat-responsive-popup.d-none {
    transform: translateY(100%)
}

cat-responsive-buttons .c-r-p-content {
    width: 100%
}

cat-responsive-buttons .c-r-p-bar {
    width: 50px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    margin: 8px auto
}

.ana-register-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    text-align: center
}

.ana-register-container h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    text-align: center
}

.ana-register-container.cta-text {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-weight: 700;
    text-align: center
}

.ana-register-container .cta-offer {
    background-color: #f5faff;
    border-left: 5px solid #007bff;
    padding: 15px;
    margin: 20px 0;
    font-size: 16px;
    text-align: center;
    border-radius: 8px
}

.ana-register-container .cta-offer p {
    margin: 5px 0
}

.ana-register-container .cta-offer strong {
    color: #007bff;
    font-size: 18px
}

.ana-register-container .security-note {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
    text-align: center
}

.ana-register-container .social-register {
    margin-top: 20px;
    text-align: center
}

.ana-register-container .social-register .social-btn {
    width: 48%;
    padding: 12px;
    margin: 5px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s ease
}

.ana-register-container .social-register .facebook-btn {
    background: #3b5998;
    color: #fff
}

.ana-register-container .social-register .facebook-btn:hover {
    background: #2d4373
}

.ana-register-container .social-register .google-btn {
    background: #db4437;
    color: #fff
}

.ana-register-container .social-register .google-btn:hover {
    background: #c1351d
}

.ana-register-container .ana-form-group {
    margin-bottom: 15px;
    text-align: left
}

.ana-register-container .ana-form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px
}

.ana-register-container .ana-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border .3s ease
}

.ana-register-container .ana-form-group input:focus {
    border-color: #007bff;
    outline: 0
}

.ana-register-container .ana-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px
}

.ana-register-container .ana-register-btn {
    width: 100%;
    padding: 12px;
    background: #28a745;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s ease;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 50px
}

.ana-register-container .ana-register-btn:hover {
    background: #218838
}

.product-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-top: 15px
}

.product-buttons .btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f27a1a;
    border: 1px solid #f27a1a;
    color: var(--add-cart-detail);
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    flex-grow: 1;
    transition: all .3s ease;
    cursor: pointer;
    border-radius: 5px;
    margin: 0
}

.product-buttons .btn-cart:hover {
    background-color: #ff8b39;
    border-color: #ff8b39;
    color: var(--add-cart-detail-hover);
    filter: brightness(1.1)
}

@media (max-width:768px) {
    .product-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .product-buttons .btn-cart {
        width: 48%;
        margin-bottom: 0;
        margin-top: 0
    }
}

.product-buttons .product-favourite {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53px;
    height: 53px;
    font-size: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    cursor: pointer;
    transition: background .3s,border-color .3s;
    margin-top: 0;
    padding-top: 4px;
    margin-left: 0
}

.product-buttons .product-favourite:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    transition: box-shadow .3s ease;
    border-color: #f27a1a
}

.product-favourite i:hover {
    color: #f27a1a;
    
    transition: box-shadow .3s ease
}

.product-favourite i {
    font-size: 24px;
    transition: transform .3s ease;
    color: #9f9f9f;
}

.product-favourite.selected {
    background-color: #f27a1a;
    border-color: #f27a1a
}

.product-favourite.selected i {
    color: #fff
}

.product-buttons .product-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    overflow: hidden
}

.product-quantity .btn {
    background: #fff;
    color: #484848;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    width: 20px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background .3s
}

.product-quantity input {
    width: 30px;
    height: 50px;
    text-align: center;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    outline: 0;
    -moz-appearance: textfield
}

.product-buttons-container {
    width: 100%;
    margin-top: 25px
}

.product-buttons-container .btn-custom {
    flex: 1;
    color: #fff;
    text-align: center;
    transition: background-color .3s ease,transform .2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    white-space: nowrap
}

.alert-info i,.product-buttons-container .btn-custom i {
    margin-right: 8px;
    font-size: 18px
}

.product-buttons-container .btn-custom:hover {
    background-color: #e65a17;
    transform: scale(1.05)
}

@media (max-width:768px) {
    .product-buttons-container .btn-custom {
        font-size: 14px;
        padding: 12px 8px
    }
}

.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);
    flex: 1
}

.product-buttons .btn-fast-buy:hover {
    background: var(--buy-now-bg-hover);
    border-color: var(--buy-now-bg-hover);
    color: var(--buy-now-hover)
}

.product-buttons .btn-wp {
    width: 100%
}

.desktop-only-urun-hader,.mobile-only-urun-hader {
    display: block
}

@media (min-width:769px) {
    .mobile-only-urun-hader {
        display: none;
        margin-bottom: 10px
    }

    .desktop-only-urun-hader {
        display: block;
        margin-bottom: 10px
    }
}

@media (max-width:768px) {
    .mobile-only-urun-hader {
        display: block;
        margin-bottom: 10px
    }

    .desktop-only-urun-hader {
        display: none;
        margin-bottom: 10px
    }

    .video-wrapper-987,.video-wrapper-988 {
        z-index: 2;
        font-family: "Poppins",sans-serif;
        padding: 0;
        position: relative;
        top: -18px
    }
}

@media (max-width:767px) {
    .video-container-987 iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 9/16;
        object-fit: cover
    }
}

@media (min-width:768px) {
    .col-lg-4.left-box {
        position: relative
    }

    .video-wrapper-988 {
        position: relative;
        bottom: 23px;
        left: 222px
    }

    .video-wrapper-987 {
        position: relative;
        bottom: 10px;
        left: 280px
    }

    .video-container-987 iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 9/16;
        object-fit: cover
    }
}

.video-btn-987 {
    background: linear-gradient(to bottom,#ff9800,#d97706);
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 50px;
    gap: 10px;
    font-size: 10px;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    margin: 0
}

.product-buttons-container .btn-custom,.video-btn-987,.video-btn-988 {
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-btn-988 {
    background: linear-gradient(to bottom,#ff9800,#d97706);
    padding: 3px 6px;
    border-radius: 50px;
    gap: 10px;
    font-size: 10px;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    margin: 0;
    background: #ccc;
    cursor: not-allowed
}

.video-icon-987,.video-icon-988 {
    font-size: 11px
}

.video-popup-hidden-987 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

.video-popup-content-987 {
    padding: 0;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,.2)
}

.close-popup-btn-987 {
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    text-align: right
}

.containerfiyat-9 {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.box-fiyat-96 {
    width: 28%;
    text-align: center;
    margin-top: 20px
}

.product-buttons-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

.product-buttons-container .btn-custom {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid;
    cursor: pointer;
    background-color: #fff
}

.product-buttons-container .btn-similar-products,.product-buttons-container .btn-stock-alert {
    border-color: #e5e5e5;
    color: #f57c00
}

.product-buttons-container .btn-similar-products:hover,.product-buttons-container .btn-stock-alert:hover {
    border-color: #f57c00;
    color: #fff;
    background-color: #f57c00;
    transform: none
}

@media (max-width:768px) {
    .product-buttons-container {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap
    }

    .product-buttons-container .btn-custom {
        font-size: 14px;
        padding: 10px 20px;
        width: 48%;
        box-sizing: border-box
    }
}

.alert-info {
    color: #4f6d7a;
    background-color: #fff;
    border-color: #a1c6d9;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
    padding: 15px 25px;
    margin-top: 20px!important;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    display: flex;
    align-items: center
}

.product-profile-1 .degerlendirme-yazi {
    position: absolute;
    left: 125px;
    top: 77px;
    font-size: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 300
}

.alert-info i {
    margin-right: 15px
}

.alert-info .alert-text {
    color: #4f6d7a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5
}

@media (max-width:768px) {
    .alert-info {
        font-size: 12px;
        padding: 10px 15px;
        margin-top: 10px;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0,0,0,.08)
    }

    .alert-info i {
        font-size: 14px;
        margin-right: 10px
    }

    .alert-info .alert-text {
        font-size: 13px;
        line-height: 1.4
    }
}

.bundle-product-box .bpb-item,.combine-product-box .bpb-item {
    align-items: flex-start;
    border: 0;
    border-radius: 0;
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 0
}

.bundle-product-box .bpb-item .bpb-image img,.combine-product-box .bpb-item .bpb-image img {
    max-height: 113px;
    min-height: 75px;
    min-width: 50px;
    max-width: 75px
}

.tilbehome-grid-banners {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px
}

.tilbehome-top-banner {
    margin-bottom: 15px
}

.tilbehome-main-container {
    margin-top: -3px
}

.tilbehome-main-container2 {
    margin-top: 0
}

.tilbehome-grid-item {
    text-align: center;
    position: relative;
    margin-bottom: 20px
}

.tilbehome-grid-item img {
    width: 100%;
    border-radius: 10px
}

.banner-title {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    color: #333;
    font-weight: 400;
    text-decoration: none;
    font-family: "Poppins",sans-serif;
    line-height: 1.5
}

@media (max-width:768px) {
    .tilbehome-grid-banners {
        grid-template-columns: repeat(3,1fr)
    }

    .pattern-group .p-g-mod {
        margin-bottom: 10px;
        margin-top: 10px
    }
}

.tilbehome-grid-item a {
    color: #8e8e8e;
    text-decoration: none
}

.tilbehome-grid-item a:hover {
    color: #f76c29
}

.tilbehome-container-unique {
    display: none;
    overflow-x: hidden
}

@media (max-width:768px) {
    .tilbehome-container-unique {
        display: block;
        margin-top: 15px
    }

    .tilbehome-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 13px;
        scroll-snap-type: x mandatory
    }

    .tilbehome-item-unique {
        flex: 0 0 calc(25% - 10px);
        max-width: calc(25% - 10px);
        text-align: center;
        position: relative;
        scroll-snap-align: start
    }

    .tilbehome-item-unique img {
        width: 100%;
        border-radius: 10px;
        aspect-ratio: 1/1;
        object-fit: cover
    }

    .banner-title-unique {
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        white-space: nowrap;
        color: #333;
        font-weight: 400;
        text-decoration: none;
        font-family: "Poppins",sans-serif;
        line-height: 1.5
    }

    .tilbehome-item-unique a {
        color: #8e8e8e;
        text-decoration: none
    }

    .tilbehome-item-unique a:hover {
        color: #f76c29
    }

    .tilbehome-scroll-wrapper::-webkit-scrollbar {
        display: none
    }
}

.tilbe-anasayfa01-card-product {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    transition: transform .2s,box-shadow .2s;
    position: relative
}

.tilbe-anasayfa01-card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,.15)
}

.tilbe-anasayfa01-free-cargo-badge,.tilbe-anasayfa01-hizli-teslimat {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #27ae60;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 3px
}

.tilbe-anasayfa01-hizli-teslimat {
    top: 30px
}

.tilbe-anasayfa01-carousel,.tilbe-anasayfa01-image-wrapper {
    position: relative
}

.tilbe-anasayfa01-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover
}

.tilbe-anasayfa01-carousel-item {
    display: inline-block;
    width: 100%
}

h1.tilbe-anasayfa01-itlewrtwrts {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin: 10px 0
}

.tilbe-anasayfa01-barcode,.tilbe-anasayfa01-brand,.tilbe-anasayfa01-product-code {
    font-size: 12px;
    color: #666;
    margin: 5px 0
}

.tilbe-anasayfa01-price-group {
    margin-top: 10px
}

.tilbe-anasayfa01-list-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px
}

.tilbe-anasayfa01-sale-price {
    font-weight: 700;
    color: #e74c3c;
    font-size: 20px
}

.tilbe-anasayfa01-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center
}

.tilbe-anasayfa01-btn {
    padding: 10px 15px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .2s;
    width: 100%;
    max-width: 200px
}

.tilbe-anasayfa01-btn-cart {
    background-color: #3498db;
    color: #fff
}

.tilbe-anasayfa01-btn-cart:hover {
    background-color: #2980b9
}

.tilbe-anasayfa01-btn-color-1.tilbe-anasayfa01-disabled {
    background-color: #bdc3c7;
    cursor: not-allowed
}

.tilbe-anasayfa01-urun-etiketi img {
    width: 24px;
    height: auto
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    line-height: 24px;
    color: #333
}

.col-xl-custom-5 {
    flex: 0 0 20%;
    max-width: 20%
}



.discount-info-blink {
    animation: blink 1s infinite;
    color: #e60000;
    font-weight: 500;
    font-size: 12px;
    padding: 2px
}

.bpagesdisc-bg img {
    max-width: 50px;
    margin-right: 12px
}

.liste-farkli-urun-bilgi90 {
    display: flex;
    align-items: center;
    padding: 12px 3px 18px 9px;
    margin-top: 10px;
    color: #f83738;
    background: #fff;
    border: 1px solid #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.05)
}

.liste-farkli-urun-bilgi9 {
    border: 1px solid #f83738;
    border-radius: 10px;
    color: #f83738;
    padding: 15px;
    font-size: 12px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 2px
}

.liste-farkli-urun9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 0 15px
}

.liste-farkli-vurgulama9 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center
}

.liste-farkli-urun8 i {
    margin-left: 8px;
    color: #f83738;
    font-size: 25px
}

.liste-farkli-vurgulama9.highlight {
    color: #f83738;
    animation: blink 1.5s ease-in-out infinite
}

.farkli-urun0-progess {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding-top: 5px
}

.farkli-urun9-progess-item {
    flex-grow: 1;
    height: 3px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    background: #fff
}

.farkli-urun9-progess-item.completed {
    background: #f83738!important
}

.icon-container-simsek {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    border-radius: 50%
}

.icon-simsek {
    width: 30px;
    height: 50px;
    color: #f83738
}

@media (max-width:768px) {
    .liste-farkli-urun-bilgi {
        flex-direction: row;
        align-items: center;
        padding: 15px 10px 15px 1px;
        margin-bottom: 15px
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description {
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 15px
    }

    .liste-farkli-urun8 i {
        margin-left: 1px
    }

    .liste-farkli-urun9 {
        padding: 0 8px
    }

    .icon-container-simsek {
        width: 30px;
        height: 30px
    }

    .icon-simsek {
        width: 20px;
        height: 20px
    }

    .liste-farkli-urun-bilgi9 {
        padding: 15px 8px 17px 12px;
        margin-bottom: 12px
    }

    .bpagesdisc-bg img {
        max-width: 40px;
        margin-right: 0;
        margin-bottom: 0
    }

    .liste-farkli-urun9t {
        margin-left: 0
    }

    .liste-farkli-vurgulama9 {
        font-size: 12px;
        font-weight: 500;
        padding-left: 0
    }

    .free-shipping-message,.sepet-indirim-mesaji {
        font-size: 12px
    }
}

footer .bb {
    background: #394348;
    padding: 20px 0;
    border-top: 1px solid #ebebeb
}

footer .contact-info .contact-item,footer .contact-info .contact-item a,footer .contact-info .contact-item i,footer .info ul li a,footer .mobile-app-title,footer .sms-newsletter-content .newsletter-title,footer .social-media .social-media-title,footer .social-media a,footer .title {
    color: #dedede
}

.etbis span {
    background: #293032;
    padding: 15px 23px;
    color: #f8f8f8;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.etbis {
    margin-right: 0;
    display: inline-block;
    text-align: right
}

@media (max-width:1280px) {
    .etbis img {
        height: 60px;
        width: 60px
    }

    .etbis span {
        padding: 15px 18px;
        font-size: 11px
    }
}

.etbis img {
    height: 60px;
    width: 60px
}

@media (min-width:1024px) {
    .mobile-only {
        display: none
    }
}

@media (max-width:1023px) {
    .mobile-only {
        display: block;
        text-align: center
    }
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    width: 100%
}

.feature {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0,0,0,.1);
    text-align: center;
    margin: 10px 0;
    overflow: hidden;
    flex-basis: calc(25% - 15px);
    box-sizing: border-box
}

.feature-img {
    max-width: 70px;
    height: auto;
    margin-bottom: 15px
}

.feature-text {
    color: #444
}

.feature-text strong {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.feature-text p {
    font-size: 14px;
    color: #777;
    line-height: 1.6
}

@media (max-width:768px) {
    .features-container {
        justify-content: center
    }

    .feature {
        max-width: 100%;
        flex-basis: 100%;
        margin: 15px 0;
        padding: 10px
    }

    .feature-img {
        max-width: 50px
    }

    .feature-text strong {
        font-size: 16px
    }

    .feature-text p {
        font-size: 12px
    }
}

.cart-empty-alert,.d-flex.pbi {
    display: flex;
    align-items: center
}

.cart-empty-alert {
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    min-height: 300px;
    background: #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 0 12px 4px #ededed
}

.d-flex.pbi {
    margin-bottom: 12px;
    gap: 8px
}

.product-detail-payment-badge-item {
    color: #121212;
    font-size: 13px;
    letter-spacing: -.24px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px
}

@media (max-width:991px) {
    .cart-empty-alert {
        text-align: center;
        padding: 15px
    }
}

.cart-empty-alert .btn {
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
    width: 80%;
    height: 50px
}

.cart-empty-alert .btn,.cart-empty-alert .btn a {
    align-items: center;
    justify-content: center
}

.cart-empty-alert .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

@media (max-width:768px) {
    .custom-tipara-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        gap: 10px;
        display: flex;
        justify-content: flex-end
    }

    .payment-security-block,.payment-summary-box {
        padding: 20px 15px
    }

    .payment-security-block.basket-page {
        margin-top: -10px
    }

    .custom-tparab-left {
        display: none
    }

    .custom-col,.custom-font,.custom-product-detail-payment-badge-item,.custom-tt {
        font-size: 12px
    }

    .custom-age-tooltip img {
        width: 14px;
        height: 14px;
        margin-right: 18px;
        margin-top: -14px
    }

    .custom-age-tooltip {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
        margin-top: -20px;
        width: 100%
    }

    .custom-tool-side {
        width: 220px;
        font-size: 12px
    }
}

.product-shipping-badge {
    margin-top: 8px;
    padding: 6px 12px;
    background-color: #fff0e5;
    color: #ff6f00;
    font-weight: 500;
    border-radius: 6px;
    display: inline-block
}

div#product-balance-block {
    color: #f27a1a;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px
}

.product-profile-1 .product-reviews .stars .fa-star,.product-profile-1 .product-reviews .stars .fa-star-half {
    font-size: 14px
}

.product-profile-1 .product-reviews .stars {
    margin-top: -9px
}

.shopping-buttons-1 {
    padding: 0
}

.product-reviews .stars .star {
    color: #f0f0f0;
    font-size: 12px
}

.product-comment-list-v2 .score .stars .star {
    color: #f0f0f0;
    display: block;
    font-size: 30px;
    position: relative;
    width: 35px
}

.product-comment-list-v2 .comments .item .customer .stars i.fill {
    color: #fc0;
    font-size: 13px
}

.product-comment-list-v2 .score .stars .star.fill {
    color: #fc0
}

.product-comment-list-v2 .summary .item .stars .fill {
    color: #fc0;
    font-size: 14px
}

.product-comment-list-v2 .summary .item .rate .fill {
    background: #fc0;
    z-index: 1
}

.product-comment-list-v2 .score .stars .star.fill .dark {
    color: #f0f0f0
}

.product-comment-list-v2 .summary .item .stars i {
    margin-right: 2px;
    font-size: 14px
}

.product-comment-list-v2 .comments .item .customer .stars i,.product-comment-list-v2 .summary .item .stars {
    color: #d8d8d863;
    font-size: 14px
}

@media (max-width:991px) {
    .product-comment-list-v2 .comments .item .customer .name {
        font-size: 12px
    }
}

.product-comment-list-v2 .comments .item .customer .date {
    color: #555;
    font-size: 12px;
    margin-right: 10px;
    font-weight: 500
}

.discount-section .input-group {
    width: 100%;
    padding-right: 10px;
    padding-bottom: 15px
}

.payment-cart-summary-1 .summary tfoot th {
    font-size: 14px;
    letter-spacing: -.03em
}

@media (max-width:1200px) {
    .final-vergi-dahil-text {
        font-size: 12px
    }
}

.final-vergi-dahil-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -.03em;
    color: #a1a1a1
}

@media (max-width:768x) {
    .payment-cart-summary-1 {
        padding: 20px 15px 0;
        margin-bottom: 15px;
        margin-top: -8px
    }
}

@media (max-width:991px) {
    .payment-cart-summary-1 {
        margin-top: -10px;
        padding: 20px 15px 0;
        margin-bottom: 20px
    }
}

@media (max-width:1200px) {
    .payment-cart-summary-1 {
        padding: 20px 15px 0;
        margin-bottom: 20px
    }
}

.payment-cart-summary-1 .summary tfoot .final {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -.03em;
    color: #36b257
}

.blinking-text {
    animation: blink 1.5s infinite ease-in-out
}

.kampanya-container {
    margin-bottom: 20px;
    text-align: center
}

.kampanya-baslik {
    font-size: 14px;
    font-weight: 700;
    color: #f27a1a;
    padding-bottom: -15px
}

.kampanya-mesaji {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #4dc761;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 8px;
    background-color: #4dc76112;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1)
}

.kampanya-mesaji i,.kampanya-mesaji2 i {
    font-size: 20px;
    color: #4dc761;
    margin-right: 8px;
    margin-left: 10px
}

.kampanya-mesaji span,.kampanya-mesaji2 span {
    color: #4dc761;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
    font-weight: 400
}

.kampanya-mesaji-rengi,.order-detail-wrapper h2 {
    color: #666;
    font-weight: 500
}

.kampanya-mesaji-rengi9 {
    color: #666;
    font-weight: 700
}

.kampanya-mesaji2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    padding-bottom: 10px
}

.kampanya-mesaji2 i {
    color: #f27a1a
}

.kampanya-mesaji2 span {
    color: #333;
    font-weight: 500
}

@media (max-width:767px) {
    .shopping-cart-1 .table tr .td-quantity {
        float: left;
        width: 50%;
        position: relative;
        top: -50px;
        left: 40px
    }
}

.kampanya-slider-container {
    width: 100%;
    background: 0 0;
    overflow: hidden;
    position: relative;
    scroll-snap-type: x mandatory;
    background-origin: border-box;
    background-clip: content-box,border-box
}

.kampanya-slider-wrapper {
    display: flex;
    gap: 0;
    animation: slideKampanya 30s infinite;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch
}

.kampanya-item {
    flex: 0 0 100%;
    max-width: 100%;
    background: 0 0;
    box-sizing: border-box;
    padding: 15px 5px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    scroll-snap-align: start;
    flex-wrap: nowrap
}

.kampanya-item i {
    font-size: 2.5rem;
    color: #d92127;
    flex-shrink: 0
}

.kampanya-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left
}

.kampanya-text h3 {
    color: #d92127;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    word-break: break-word
}

.kampanya-text p {
    color: #575757;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
    margin: -5px 0 0;
    font-weight: 400
}

.kampanya-text p span {
    font-weight: 600;
    color: #000
}

.kampanya-text p strong {
    font-weight: 600;
    color: #333
}

.desktop-only-hr {
    display: block
}

@media (max-width:768px) {
    .desktop-only-hr {
        display: none
    }
}


/* ============================================
   PREMIUM & MODERN VOUCHER CARD
   ============================================ */
.card-voucher {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    max-width: 440px;
    margin: 20px auto;
    overflow: hidden;
    transition: .25s ease;
}

/* Hover – hafif premium hareket */
.card-voucher:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* ============================================
   ÜST BİLGİ ALANI (KUPON ADI, TARİH, LİNK)
   ============================================ */
.card-voucher .meta {
    border-bottom: 1px dashed #d6d6d6;
    border-right: 0;
    flex: 1;
    flex-direction: column;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
}

.card-voucher .meta .name {
    font-size: 17px;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: .3px;
}

.card-voucher .meta .date {
    font-size: 13px;
    margin-top: 4px;
    color: #787878;
}

.card-voucher .meta .link {
    margin-top: 5px;
    display: inline-block;
    font-size: 13px;
    color: #0072e6;
    font-weight: 600;
    text-decoration: none;
}

.card-voucher .meta .link:hover {
    text-decoration: underline;
}

/* ============================================
   İNDİRİM YAZISI
   ============================================ */
.card-voucher .info .discount {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ff4f00;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

/* ============================================
   KOD ALANI
   ============================================ */
.card-voucher .info .code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px dashed #d5d5d5;
    transition: background .25s;
    cursor: pointer;
}

.card-voucher .info .code:hover {
    background: #f2f2f2;
}

/* Kod */
.card-voucher .info .value {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

/* Kopyalama butonu */
.card-voucher .btn-copy {
    background: #ff4f00;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

.card-voucher .btn-copy:hover {
    background: #e44600;
}

/* ============================================
   ZARİF KUPON KESİK EFEKTİ (SADE & PROFESYONEL)
   ============================================ */

.card-voucher:before,
.card-voucher:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    top: 50%;
    transform: translateY(-50%);
}

.card-voucher .info {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.card-voucher, .card-voucher .meta {
    align-items: center;
    display: flex;
    justify-content: center;
}

.card-voucher:before {
    left: -11px;
}

.card-voucher:after {
    right: -11px;
}

/* ============================================
   MOBİL
   ============================================ */
@media (max-width: 768px) {
    .card-voucher {
        padding: 18px 16px;
    }
    .card-voucher .meta .name {
        font-size: 15px;
    }
    .card-voucher .info .discount {
        font-size: 24px;
    }
    .card-voucher .info .value {
        font-size: 15px;
    }
}


.table-alt-cizgi {
    border-top: 1px solid #e7ebf5
}

.payment-cart-summary-1 .summary tfoot th .genel-toplam-ozet {
    font-size: 17px;
    font-weight: 600
}

.password-container {
    position: relative
}

.password-container .form-control {
    padding-right: 40px
}

.password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer
}

.nav-tabs {
    margin-bottom: 20px
}

.nav-tabs .nav-item .nav-link {
    border-radius: 0
}

.new-cargo-class {
    margin-left: auto;
    margin-right: 0;
    border-left: 1px solid #e7e7e7;
    padding-left: 10px
}

.new-cargo-class .cargo-details {
    display: flex;
    align-items: center;
    padding: 15px 0 0;
    gap: 10px
}

.new-cargo-class .cargo-details .cargo-icon {
    font-size: 18px;
    color: #049f4e
}

.new-cargo-class .cargo-details .countdown-text {
    font-size: 14px;
    color: #000
}

.new-cargo-class .cargo-details .countdown-text span {
    color: #049f4e;
    font-size: 14px;
    font-weight: 500
}

.new-cargo-class .cargo-details .countdown-text b {
    color: #000
}

.invoice-info-fat {
    padding: 15px 20px;
    margin-top: 15px;
    background: #e5ffea;
    border: 1px solid #e5ffea;
    border-radius: 8px;
    color: #028255;
    font-weight: 500
}

.order-detail-wrapper {
    margin: 60px auto;
    padding: 30px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
    color: #333
}

.order-detail-wrapper h1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px
}

.order-detail-wrapper h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 18px
}

.product-profile-1 [style*="border-color:#AAAAAA"] {
    border-color: #fff!important
}

.order-detail-wrapper .explanation {
    font-size: 14px;
    color: #555;
    background: #f9f9f9;
    border-left: 4px solid #f27a1a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px
}

.order-detail-form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #444
}

.order-detail-form .form-control {
    padding: 20px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color .3s ease;
    height: 50px
}

.order-detail-form .form-control:focus {
    border-color: #0af;
    outline: 0
}

.order-detail-form .btn-success {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    background-color: #00b14f;
    border-color: #00b14f;
    border-radius: 10px;
    transition: background .3s ease
}

.order-detail-form .btn-success:hover {
    background-color: #094;
    border-color: #094
}

.order-detail-response {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #333
}

/* ===============================
   CARD PRODUCT – FINAL LAYOUT
   =============================== */

/* ANA BLOK */
.card-product .card-price {
    margin-top: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 52px;
}

/* ===============================
   DISCOUNT BADGE – COMPACT
   =============================== */

.card-product .card-discount-badge {
    min-width: 44px;
    padding: 6px 6px;
    border-radius: 6px;
    background: #fbe9e7;
    color: #f27a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* YÜZDE (ANA ODAK) */
.card-product .card-discount-badge {
    font-size: 13px;
    font-weight: 700;
}

/* ALT YAZI */
.card-product .card-discount-badge::after {
    content: "İNDİRİM";
    margin-top: 2px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1;
}



/* SAĞ: FİYATLAR BLOĞU */
.card-product .card-prices {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* PİYASA FİYATI (ÜSTTE, SOLUK) */
.card-product .card-old-price {
    font-size: 12px;
    color: #bdbdbd;
    text-decoration: line-through;
    font-weight: 400;
}

.card-product .card-sale-price {
    font-size: 19px;
    font-weight: 600;
    color: #f27a1a; /* ana fiyat rengi */
    line-height: 1.15;
    letter-spacing: -0.5px; /* rakamlar daha sıkı */
}


.card-product .card-sale-price.line-through {
    font-size: 13px;
    color: #bdbdbd;
    text-decoration: line-through;
    font-weight: 400;
    letter-spacing: 0;
}

.flash-deal-box {
    margin: 16px 0;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0,0,0,.12);
}

.flash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BAŞLIK */
.flash-title {
    font-size: 16px;
    font-weight: 700;
    color: #f27a1a; /* Trendyol turuncu */
    white-space: nowrap;
}

/* SAYAÇ ALANI */
.flash-timer {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: #fef1e7;
    border-radius: 8px;
    gap: 4px;
}

/* RAKAMLAR */
.flash-timer span:not(.flash-sep) {
    min-width: 26px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #f27a1a;
}

/* AYRAÇ */
.flash-sep {
    font-size: 14px;
    font-weight: 700;
    color: #f27a1a;
}

/* MOBİL */
@media (max-width: 576px) {
    .flash-title {
        font-size: 14px;
    }

    .flash-timer {
        padding: 5px 8px;
    }

    .flash-timer span:not(.flash-sep) {
        font-size: 13px;
        min-width: 24px;
    }
}

/* ==========================================================
   TilbeHome – CSS Optimization Patch (non-breaking overrides)
   - Scoped fixes for class collisions
   - Accessibility: prefers-reduced-motion
   - Safer defaults: global box-sizing
========================================================== */

*,*::before,*::after{box-sizing:border-box;}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* PDP: keep the action buttons layout stable even if .product-buttons is redefined later */
.product-profile-1 .product-buttons{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-start;
  flex-wrap:wrap;
}

/* PDP rating row: keep alignment stable */
.product-profile-1 .urun-info-container{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

/* Bundle old price stays slightly lighter, without leaking globally */
.bundle-summary .old-price{
  color:#b5b5b5;
  
}


/* ==========================================================
   TİLBEHEAD19 — BİLDİRİM PANELİ (Premium Minimal)
   Tüm seçiciler .tilbehead19-notification-dropdown altında
========================================================== */

.tilbehead19-tab-radio {
  position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0;
}

/* DROPDOWN */
.tilbehead19-notification-dropdown {
  width: 380px;
  max-height: 520px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(17,24,39,0.10);
}

/* HEADER */
.tilbehead19-notification-dropdown .tilbehead19-notification-header {
  background: #fff;
  border-bottom: 1px solid #F3F4F6;
  position: sticky; top: 0; z-index: 10;
}
.tilbehead19-notification-dropdown .tilbehead19-notification-tabs {
  display: flex; align-items: stretch; padding: 0 8px;
}
.tilbehead19-notification-dropdown .tilbehead19-notification-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 14px 11px;
  font-size: 13px; font-weight: 500; color: #9CA3AF;
  cursor: pointer; border: none; background: transparent;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap; text-decoration: none; letter-spacing: -0.1px;
}
.tilbehead19-notification-dropdown .tilbehead19-notification-tab:hover { color: #374151; }

#tilbehead19_tab_alerts:checked   ~ .tilbehead19-notification-header .tilbehead19-notification-tab[for="tilbehead19_tab_alerts"],
#tilbehead19_tab_messages:checked ~ .tilbehead19-notification-header .tilbehead19-notification-tab[for="tilbehead19_tab_messages"] {
  color: #111827; font-weight: 700; border-bottom-color: #F27A1A;
}

.tilbehead19-notification-dropdown .tilbehead19-notification-tab-link {
  margin-left: auto; color: #9CA3AF; font-size: 12px; font-weight: 400;
  padding: 13px 10px 11px; border-bottom-color: transparent !important;
  display: inline-flex; align-items: center; gap: 4px;
}
.tilbehead19-notification-dropdown .tilbehead19-notification-tab-link:hover { color: #F27A1A; text-decoration: none; }
.tilbehead19-notification-dropdown .tilbehead19-notification-tab-link i { font-size: 9px; }

/* CONTENT */
.tilbehead19-notification-dropdown .tilbehead19-notification-content {
  max-height: 460px; overflow-y: auto; overscroll-behavior: contain;
  scrollbar-width: thin; scrollbar-color: #E5E7EB transparent;
}
.tilbehead19-notification-dropdown .tilbehead19-notification-content::-webkit-scrollbar { width: 3px; }
.tilbehead19-notification-dropdown .tilbehead19-notification-content::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 99px; }

/* PANELS */
.tilbehead19-notification-dropdown .tilbehead19-tab-panel { display: none; }
#tilbehead19_tab_alerts:checked   ~ .tilbehead19-notification-content .tilbehead19-tab-panel-alerts   { display: block; }
#tilbehead19_tab_messages:checked ~ .tilbehead19-notification-content .tilbehead19-tab-panel-messages { display: block; }

/* SHARED */
.tilbehead19-notification-dropdown .tilbehead19-notif-block { padding: 18px 20px 16px; }
.tilbehead19-notification-dropdown .tilbehead19-notif-divider { height: 1px; background: #F9FAFB; }

.tilbehead19-notification-dropdown .tilbehead19-notif-section-label {
  font-size: 10px; font-weight: 600; color: #9CA3AF;
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px;
}

/* İNDİRİM KADEMELERİ */
.tilbehead19-notification-dropdown .tilbehead19-notif-tiers {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-tier {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px; border-radius: 10px;
  background: #FAFAFA; border: 1px solid #F3F4F6; gap: 1px;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-tier-qty { font-size: 10px; color: #9CA3AF; font-weight: 400; }
.tilbehead19-notification-dropdown .tilbehead19-notif-tier-pct { font-size: 18px; font-weight: 700; color: #F27A1A; line-height: 1.2; letter-spacing: -0.5px; }
.tilbehead19-notification-dropdown .tilbehead19-notif-tier-label { font-size: 9px; color: #4b4b4b;; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2px; }

/* FLASH SATIRI */
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 10px;
  background: #FFF8F2; border: 1px solid #FDE8D0;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-row-left { display: flex; align-items: center; gap: 10px; }
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-row-left i { font-size: 13px; color: #F27A1A; }
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-row-left span { font-size: 12.5px; color: #374151; line-height: 1.4; }
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-row-left span b { color: #111827; font-weight: 600; }
.tilbehead19-notification-dropdown .tilbehead19-notif-flash-tag {
  font-size: 10px; font-weight: 700; color: #F27A1A;
  background: #fff; border: 1px solid #FDE8D0;
  padding: 2px 8px; border-radius: 99px; white-space: nowrap; flex-shrink: 0;
}

/* MESAJ SATIRLARI */
.tilbehead19-notification-dropdown .tilbehead19-notif-rows { display: flex; flex-direction: column; gap: 2px; }

.tilbehead19-notification-dropdown .tilbehead19-notif-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px; transition: background 0.15s;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-row:hover { background: #FAFAFA; }

.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon.green  { background: #F0FDF4; color: #16A34A; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon.blue   { background: #EFF6FF; color: #3B82F6; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon.orange { background: #FFF7ED; color: #F27A1A; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon.purple { background: #F5F3FF; color: #8B5CF6; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-icon.teal   { background: #F0FDFA; color: #14B8A6; }

.tilbehead19-notification-dropdown .tilbehead19-notif-row-text { flex: 1; min-width: 0; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-text strong { display: block; font-size: 12.5px; font-weight: 600; color: #111827; margin-bottom: 1px; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-text span { font-size: 11.5px; color: #9CA3AF; line-height: 1.4; }
.tilbehead19-notification-dropdown .tilbehead19-notif-row-text span b { color: #6B7280; font-weight: 500; }

/* FOOTER */
.tilbehead19-notification-dropdown .tilbehead19-notif-footer {
  padding: 12px 20px 16px;
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  border-top: 1px solid #F3F4F6;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-footer-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; color: #6B7280; font-weight: 500;
}
.tilbehead19-notification-dropdown .tilbehead19-notif-footer-badge i { font-size: 10px; color: #16A34A; }
.tilbehead19-notification-dropdown .tilbehead19-notif-footer-dot {
  width: 3px; height: 3px; border-radius: 50%; background: #D1D5DB;
}

/* MOBİL */
@media (max-width: 768px) {
  .tilbehead19-notification-dropdown { width: 100%; border-radius: 16px 16px 0 0; }
  .tilbehead19-notification-dropdown .tilbehead19-notif-block { padding: 14px 16px 12px; }
}

/* ==========================================================
   TILBEHEAD19 — CART DROPDOWN (Premium Minimal / Trendyol vibe)
   Tema inject: .ajax-shopping-cart + .header-cart-summary-1
   SADECE #tilbehead19-header .tilbehead19-cart-dropdown içinde çalışır
========================================================== */

#tilbehead19-header .tilbehead19-cart-dropdown{
  width: 360px !important;
  background:#fff !important;
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:14px !important;
  box-shadow:0 10px 30px rgba(17,24,39,.12) !important;
  overflow:hidden !important;
  padding:0 !important;
}

/* header */
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-cart-header{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:14px 16px !important;
  border-bottom:1px solid rgba(17,24,39,.06) !important;
  background:#fff !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-cart-title{
  font-size:14px !important;
  font-weight:700 !important;
  color:#111827 !important;
  letter-spacing:-.2px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-cart-count{
  font-size:12px !important;
  color:#6b7280 !important;
  font-weight:500 !important;
}

/* free ship block (minimal) */
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-free-ship{
  padding:10px 16px !important;
  border-bottom:1px solid rgba(17,24,39,.06) !important;
  background:#fff !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-free-ship-text{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;
  font-size:12px !important;
  color:#374151 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-free-ship-text b{
  color:#333 !important;
  font-weight:600 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-ship-bar{
  margin-top:8px !important;
  height:8px !important;
  background:#f3f4f6 !important;
  border-radius:999px !important;
  overflow:hidden !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .tnh-ship-bar-fill{
  height:100% !important;
  background:#4dc761 !important;
  border-radius:999px !important;
}

/* products area */
#tilbehead19-header .tilbehead19-cart-dropdown [data-cart-products]{
  max-height: 280px !important;
  overflow:auto !important;
  padding: 6px 0 !important;
  background:#fff !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown [data-cart-products]::-webkit-scrollbar{ width:8px; }
#tilbehead19-header .tilbehead19-cart-dropdown [data-cart-products]::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,.18);
  border-radius:999px;
  border:2px solid #fff;
}
#tilbehead19-header .tilbehead19-cart-dropdown [data-cart-products]::-webkit-scrollbar-track{ background:transparent; }

/* THEME INJECT — list wrapper */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart{
  padding: 0 !important;
  margin: 0 !important;
}

/* THEME INJECT — item row */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product{
  position:relative !important;
  display:flex !important;
  gap:12px !important;
  padding:10px 16px !important;
  align-items:flex-start !important;
  border:0 !important;
  background:transparent !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product + .product{
  border-top:1px solid rgba(17,24,39,.06) !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product:hover{
  background:#fafafa !important;
}

/* image */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .image{
  width:52px !important;
  height:52px !important;
  flex:0 0 auto !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .image img{
  width:52px !important;
  height:52px !important;
  border-radius:10px !important;
  object-fit:cover !important;
  border:1px solid rgba(17,24,39,.06) !important;
  display:block !important;
}

/* info */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .info{
  flex:1 !important;
  min-width:0 !important;
  padding-right:26px !important; /* remove btn için yer */
}

/* name */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .info .name{
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  font-size:11px !important;
  font-weight:400 !important;
  color:#111827 !important;
  line-height:1.35 !important;
  text-decoration:none !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .info .name:hover{
  color:#111827 !important;
  text-decoration:none !important;
}

/* variants (minimal chips) */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .variants{
  margin-top:4px !important;
  display:flex !important;
  flex-wrap:wrap !important;
  gap:6px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .variant{
  font-size:11px !important;
  color:#6b7280 !important;
  background:#f9fafb !important;
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:999px !important;
  padding:2px 8px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .variant span{
  color:#111827 !important;
  font-weight:600 !important;
}

/* price line */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .price{
  margin-top:6px !important;
  font-size:12px !important;
  color:#374151 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .product .price .value{
  font-weight:700 !important;
  color:#f97316 !important; /* vurgu */
}

/* remove button (premium minimal) */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .btn-remove{
  position:absolute !important;
  top:10px !important;
  right:12px !important;
  width:22px !important;
  height:22px !important;
  border-radius:999px !important;
  border:1px solid rgba(17,24,39,.10) !important;
  background:#fff !important;
  color:#6b7280 !important;
  line-height:20px !important;
  padding:0 !important;
  font-size:14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-shopping-cart .btn-remove:hover{
  background:#f3f4f6 !important;
  color:#111827 !important;
}

/* empty state (theme inject) */
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-cart-empty{
  padding: 16px !important;
  color:#374151 !important;
  font-size:13px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .ajax-cart-empty strong{
  color:#111827 !important;
}

/* summary */
#tilbehead19-header .tilbehead19-cart-dropdown [data-cart-summary]{
  border-top:1px solid rgba(17,24,39,.06) !important;
  padding: 12px 16px 14px !important;
  background:#fff !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1{
  margin:0 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .table{
  width:100% !important;
  margin:0 0 10px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .table tfoot tr th{
  padding:6px 0 !important;
  font-size:12px !important;
  color:#374151 !important;
  font-weight:600 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .table tfoot tr th:last-child{
  text-align:right !important;
  color:#4dc761 !important;
  font-weight:700 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .final{
  font-size:14px !important;
  font-weight:600 !important;
  color:#111827 !important;
}

/* buttons (2’li premium) */
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .buttons{
  display:flex !important;
  gap:10px !important;
  margin-top:10px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .buttons .btn{
  flex:1 !important;
  height:40px !important;
  border-radius:10px !important;
  font-size:13px !important;
  font-weight:700 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-decoration:none !important;
  border:1px solid rgba(17,24,39,.10) !important;
  background:#fff !important;
  color:#111827 !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .buttons .btn-color-2{
  background:#f97316 !important;
  border-color:#f97316 !important;
  color:#fff !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .buttons .btn-color-2 i{
  margin-left:6px !important;
  font-size:12px !important;
}
#tilbehead19-header .tilbehead19-cart-dropdown .header-cart-summary-1 .buttons .btn:hover{
  filter: none !important;
  transform:none !important;
  opacity: .95 !important;
}

/* =========================
   Trendyol-Style Trust Bar (Legacy Safe)
   ========================= */

.th-trustbar{
  background: #ffffff;
  padding: 14px 0;

}

.th-trustbar__wrap{
  
  margin: 0 auto;
  padding: 0 auto;

  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.th-trustbar__item{
  text-decoration: none;
  color: inherit;

  flex: 1 1 0;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.08);
  background: #fff;

  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.th-trustbar__item:hover{
  border-color: rgba(255,77,87,.22);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  transform: translateY(-1px);
}

.th-trustbar__icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,77,87,.09);
  color: #ff4d57;
  flex: 0 0 36px;
}

.th-trustbar__icon i{
  font-size: 16px;
  line-height: 1;
}

.th-trustbar__txt{
  display: block;
  min-width: 0;
}

.th-trustbar__title{
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.th-trustbar__desc{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.25;
  color: #6b7280;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tablet: 2 satıra böl (3 + 2) */
@media (max-width: 1024px){
  .th-trustbar__wrap{
    flex-wrap: wrap;
  }
  .th-trustbar__item{
    flex: 1 1 calc(33.3333% - 12px);
  }
}

/* Mobil: Trendyol gibi yatay kaydırmalı şerit */
@media (max-width: 640px){
  .th-trustbar{
    padding: 12px 0;
  }

  .th-trustbar__wrap{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px;
  }

  .th-trustbar__item{
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .th-trustbar__wrap{
    scroll-snap-type: x mandatory;
  }
}

/* scrollbar sade (opsiyonel) */
.th-trustbar__wrap::-webkit-scrollbar{ height: 8px; }
.th-trustbar__wrap::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,.12);
  border-radius: 999px;
}

    /* ════════════════════════════════════
       BANNER
    ════════════════════════════════════ */
    .fsale {
      position: relative;
      width: 100%;
      border-radius: 22px 22px 22px 22px;
      overflow: hidden;
      background: linear-gradient(150deg, #df1e14 0%, #ef4a25 40%, #ff7848 75%, #ffaa88 100%);
      animation: fsale-in .42s cubic-bezier(.22,1,.36,1) both;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 20px 25px 44px 25px;
      gap: 0;
    }

    @keyframes fsale-in {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fsale::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,.45) 50%, transparent 95%);
      z-index: 2;
    }

    .fsale::after {
      content: "";
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      bottom: -140px; right: -100px;
      pointer-events: none;
    }

    /* ── CANLI BADGE ── */
    .fsale__badge {
      position: absolute;
      top: 14px; right: 16px;
      display: flex;
      align-items: center;
      gap: 5px;
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      padding: 4px 10px 4px 7px;
      z-index: 3;
    }

    .fsale__badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
      animation: fsale-blink 1.9s ease-in-out infinite;
    }

    @keyframes fsale-blink {
      0%,100% { opacity: 1; }
      50%      { opacity: .22; }
    }

    .fsale__badge-text {
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .6px;
      text-transform: uppercase;
      color: #fff;
    }

    /* ── DEKORATİF ŞİMŞEK ── */
    .fsale__deco {
      position: absolute;
      bottom: -18px; right: -14px;
      pointer-events: none;
      z-index: 0;
    }

    .fsale__deco svg {
      width: 130px; height: 130px;
      opacity: .08;
    }

    /* ════════════════════════════════════
       1. BAŞLIK
    ════════════════════════════════════ */
.fsale__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -.25px;
    position: relative;
    z-index: 1;
    /* padding-right: 60px; */
}

    /* ════════════════════════════════════
       2. SAYAÇ — beyaz pill
    ════════════════════════════════════ */
    .fsale__timer {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 999px;
      padding: 11px 10px;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 18px rgba(0,0,0,.11);
    }

    .fsale__timer-unit {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      position: relative;
    }

    .fsale__timer-unit + .fsale__timer-unit::before {
      content: "";
      position: absolute;
      left: 0; top: 6px; bottom: 6px;
      width: 1px;
      background: #efefef;
    }

    .fsale__timer-num {
      font-size: 26px;
      font-weight: 900;
      line-height: 1;
      color: #111;
      letter-spacing: -1px;
      font-variant-numeric: tabular-nums;
      min-width: 32px;
      text-align: center;
      transition: color .2s;
    }

    .fsale__timer-num.is-urgent { color: #df1e14; }

    .fsale__timer-lbl {
      font-size: 9px;
      font-weight: 700;
      color: #c2c2c2;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    /* ════════════════════════════════════
       3. AÇIKLAMA
    ════════════════════════════════════ */
    .fsale__desc {
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255,255,255,.82);
      text-align: center;
      margin: 0 0 14px;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }

    /* ════════════════════════════════════
       4. ÇOKLU ÜRÜN İNDİRİM TABLOSU
    ════════════════════════════════════ */
    .fsale__bulk {
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .fsale__bulk-head {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 10px 14px 9px;
      border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .fsale__bulk-head svg {
      width: 14px; height: 14px;
      flex-shrink: 0;
      color: #fff;
    }

    .fsale__bulk-title {
      font-size: 12.5px;
      font-weight: 900;
      color: #fff;
      letter-spacing: .05px;
    }

    .fsale__bulk-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .fsale__bulk-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 14px;
      gap: 6px;
      border-right: 1px solid rgba(255,255,255,.10);
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    /* Son satır alt border'ı kaldır */
    .fsale__bulk-item:nth-child(3),
    .fsale__bulk-item:nth-child(4) {
      border-bottom: none;
    }

    /* Sağ kolon border'ı kaldır */
    .fsale__bulk-item:nth-child(even) {
      border-right: none;
    }

    .fsale__bulk-qty {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .fsale__bulk-qty-num {
      font-size: 13px;
      font-weight: 900;
      color: #fff;
    }

    .fsale__bulk-qty-label {
      font-size: 10.5px;
      font-weight: 600;
      color: rgba(255,255,255,.65);
    }

    .fsale__bulk-disc {
      
      border: 1px solid rgba(255,255,255,.30);
      border-radius: 999px;
      padding: 3px 9px;
      font-size: 11.5px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .1px;
      white-space: nowrap;
    }

    /* En yüksek indirim vurgusu */
    .fsale__bulk-item--best .fsale__bulk-disc {
      
      border-color: rgba(255,255,255,.55);
    }

    .fsale__bulk-item--best .fsale__bulk-qty-num {
      color: #fff;
    }


    .fsale__avatars {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .fsale__avatar {
      width: 26px; height: 26px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.55);
      background: rgba(255,255,255,.22);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #fff;
      font-weight: 700;
      margin-left: -8px;
    }

    .fsale__avatar:first-child { margin-left: 0; }

    .fsale__avatar-more {
      background: rgba(255,255,255,.28);
      font-size: 9px;
    }

  

    .fsale__pulse-bars {
      display: flex;
      align-items: flex-end;
      gap: 2px;
      height: 18px;
    }

    .fsale__pulse-bar {
      width: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,.65);
      animation: fsale-pulse 1.2s ease-in-out infinite;
    }

    .fsale__pulse-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
    .fsale__pulse-bar:nth-child(2) { height: 14px; animation-delay: .15s; }
    .fsale__pulse-bar:nth-child(3) { height: 18px; animation-delay: .30s; }
    .fsale__pulse-bar:nth-child(4) { height: 10px; animation-delay: .45s; }

    @keyframes fsale-pulse {
      0%,100% { opacity: .4; transform: scaleY(.6); }
      50%      { opacity: 1;  transform: scaleY(1); }
    }


    /* ════════════════════════════════════
       6. CTA BUTONU
    ════════════════════════════════════ */
.fsale__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    background: #fff;
    color: #df1e14;
    font-size: 13.5px;
    padding: 13px 1px;
    border-radius: 999px;
    width: 100%;
    position: relative;
    z-index: 1;
}

    .fsale__cta:hover {
      background: #fff7f6;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,.16);
    }

    .fsale__cta svg { transition: transform .14s; flex-shrink: 0; }
    .fsale__cta:hover svg { transform: translateX(3px); }

    /* ════════════════════════════════════
       MASAÜSTÜ  ≥ 660px — sadece genişler
    ════════════════════════════════════ */
    @media (min-width: 660px) {
      .fsale {
        max-width: 640px;
        padding: 20px 25px 44px 25px;
        border-radius: 22px 0px 0px 22px;
      }

      .fsale__title { font-size: 22px; }

      .fsale__timer { padding: 12px 20px; }
      .fsale__timer-num { font-size: 28px; }

      .fsale__bulk-title { font-size: 13px; }
      .fsale__bulk-qty-num { font-size: 14px; }
      .fsale__bulk-disc { font-size: 12px; }

      .fsale__cta { font-size: 14px; }
    }
    
            @media (max-width: 768px) {
      .fsale {
        max-width: 640px;
        padding: 20px 25px 44px 25px;
       border-radius: 22px 22px 22px 22px;

      background: linear-gradient(165deg, #df1e14 0%, #ef4a25 40%, #ff7848 75%, #ffaa88 100%);
      }
      .fsale__bulk {
display:none;
    }
      .fsale__badge {

    top: 21px;
    right: 7px;

}
            }


/* =============================================================
   TILBE HOME — FOOTER v2  (prefix: tf2-)
   Renkler: var(--main-color) turuncu, koyu zemin
============================================================= */
.tf2-footer {
  --tf2-bg:     #0f1419;
  --tf2-bg2:    #161d26;
  --tf2-bg3:    #1b2433;
  --tf2-bgbar:  #090d12;
  --tf2-accent: var(--main-color, #ff6000);
  --tf2-text:   #e2e8f0;
  --tf2-muted:  #8899aa;
  --tf2-border: rgba(255,255,255,.07);
  --tf2-radius: 8px;
}

/* TOP BAR */
.tf2-footer-top { background: var(--tf2-bg2); border-bottom: 1px solid var(--tf2-border); }
.tf2-footer-top-inner {
  max-width: 1440px; margin: 0 auto; padding: 36px 24px;
  display: flex; align-items: flex-start; gap: 32px;
}
.tf2-top-sep { width: 1px; align-self: stretch; background: var(--tf2-border); flex-shrink: 0; }

/* Newsletter */
.tf2-newsletter { flex: 2; display: flex; flex-direction: column; gap: 12px; }
.tf2-sec-icon {
  width: 42px; height: 42px; background: rgba(255,96,0,.12);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--tf2-accent); font-size: 18px;
}
.tf2-newsletter strong, .tf2-app-block strong, .tf2-social-block strong {
  font-size: 15px; font-weight: 700; color: var(--tf2-text); display: block;
}
.tf2-newsletter > span, .tf2-app-block > span {
  font-size: 12px; color: var(--tf2-muted); line-height: 1.5;
}
.tf2-newsletter em { color: var(--tf2-accent); font-style: normal; font-weight: 600; }
.tf2-nl-form {
  display: flex; max-width: 400px;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--tf2-radius);
  overflow: hidden; background: rgba(255,255,255,.04);
}
.tf2-nl-form input {
  flex: 1; padding: 11px 14px; background: transparent;
  border: none; outline: none; font-size: 13px; color: var(--tf2-text);
}
.tf2-nl-form input::placeholder { color: var(--tf2-muted); }
.tf2-nl-form button {
  padding: 11px 18px; background: var(--tf2-accent); color: #fff;
  border: none; cursor: pointer; font-size: 13px; font-weight: 600;
  white-space: nowrap; transition: filter .2s;
}
.tf2-nl-form button:hover { filter: brightness(1.1); }
.tf2-kvkk { display: flex; align-items: flex-start; gap: 7px; cursor: pointer; }
.tf2-kvkk input { margin-top: 2px; accent-color: var(--tf2-accent); flex-shrink: 0; }
.tf2-kvkk span { font-size: 11px; color: var(--tf2-muted); line-height: 1.5; }
.tf2-kvkk a { color: var(--tf2-accent); text-decoration: none; }

/* App */
.tf2-app-block { flex: 1.5; display: flex; flex-direction: column; gap: 12px; }
.tf2-app-btns { display: flex; flex-direction: column; gap: 8px; }
.tf2-app-btns a img { border-radius: 6px; border: 1px solid rgba(255,255,255,.1); max-width: 130px; display: block; }

/* Social */
.tf2-social-block { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.tf2-social-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.tf2-social-icons a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tf2-radius); color: var(--tf2-muted); font-size: 14px;
  transition: background .2s, color .2s, border-color .2s; text-decoration: none;
}
.tf2-social-icons a:hover { background: var(--tf2-accent); border-color: var(--tf2-accent); color: #fff; }

/* MAIN NAV */
.tf2-footer-main { background: var(--tf2-bg); }
.tf2-footer-main-inner {
  max-width: 1440px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 220px repeat(4, 1fr); gap: 40px;
}
.tf2-brand { display: flex; flex-direction: column; gap: 14px; }
.tf2-brand img { max-width: 150px; height: auto; }
.tf2-brand p { font-size: 12px; color: var(--tf2-muted); line-height: 1.7; }
.tf2-trust { display: flex; flex-direction: column; gap: 6px; }
.tf2-trust li {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: var(--tf2-muted); list-style: none;
}
.tf2-trust li i { color: var(--tf2-accent); width: 13px; }

/* Columns */
.tf2-col-toggle {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; border-bottom: 1px solid var(--tf2-border);
  padding: 0 0 13px; cursor: pointer;
  font-size: 11px; font-weight: 700; color: var(--tf2-text);
  text-transform: uppercase; letter-spacing: .8px; text-align: left;
}
.tf2-col-toggle > i:first-child { color: var(--tf2-accent); font-size: 12px; }
.tf2-col-arrow {
  margin-left: auto; font-size: 10px; color: var(--tf2-muted);
  display: none; transition: transform .25s;
}
.tf2-links {
  list-style: none; padding: 14px 0 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.tf2-links a {
  font-size: 13px; color: var(--tf2-muted); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color .15s;
}
.tf2-links a:hover { color: var(--tf2-accent); }
.tf2-wa-link { color: #25d366 !important; }
.tf2-wa-link:hover { filter: brightness(1.15); }

/* Contact */
.tf2-contact {
  font-style: normal; padding-top: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.tf2-c-row { display: flex; align-items: flex-start; gap: 10px; }
.tf2-c-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,.05);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--tf2-accent); font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.tf2-c-label {
  display: block; font-size: 10px; font-weight: 700; color: var(--tf2-accent);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px;
}
.tf2-c-row div { display: flex; flex-direction: column; }
.tf2-c-row a, .tf2-c-row span { font-size: 12px; color: var(--tf2-muted); text-decoration: none; }
.tf2-c-row a:hover { color: var(--tf2-accent); }
.tf2-etbis {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tf2-border);
}
.tf2-etbis a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.tf2-etbis img { width: 52px; height: auto; border-radius: 4px; }
.tf2-etbis span { font-size: 11px; color: var(--tf2-muted); line-height: 1.4; }

/* BOTTOM */
.tf2-footer-bottom {
  background: var(--tf2-bg3);
  border-top: 1px solid var(--tf2-border); border-bottom: 1px solid var(--tf2-border);
}
.tf2-footer-bottom-inner {
  max-width: 1440px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.tf2-cargo { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tf2-cargo-label {
  font-size: 10px; font-weight: 700; color: var(--tf2-muted);
  text-transform: uppercase; letter-spacing: .6px; white-space: nowrap;
}
.tf2-cargo-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tf2-cargo-chip {
  padding: 4px 11px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  font-size: 11px; color: var(--tf2-muted); white-space: nowrap;
}
.tf2-security { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tf2-sec-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  font-size: 11px; color: var(--tf2-muted); font-weight: 500;
  white-space: nowrap; text-decoration: none; transition: border-color .2s, color .2s;
}
.tf2-sec-etbis { color: var(--tf2-accent); border-color: rgba(255,96,0,.2); }
.tf2-sec-etbis:hover { border-color: var(--tf2-accent); }
.tf2-rating {
  display: flex; align-items: center; gap: 10px;
  background: var(--tf2-accent); padding: 10px 16px; border-radius: var(--tf2-radius);
}
.tf2-rating-score { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.tf2-rating-info { display: flex; flex-direction: column; gap: 3px; }
.tf2-rating-stars { display: flex; gap: 2px; color: #fff; font-size: 11px; }
.tf2-rating-info > span { font-size: 10px; color: rgba(255,255,255,.85); font-weight: 600; }
.tf2-rating-count { font-size: 10px; color: rgba(255,255,255,.7); }

/* BAR */
.tf2-footer-bar { background: var(--tf2-bgbar); }
.tf2-footer-bar-inner {
  max-width: 1440px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.tf2-bar-left { font-size: 12px; color: var(--tf2-muted); }
.tf2-bar-nav { display: flex; align-items: center; gap: 18px; }
.tf2-bar-nav a { font-size: 12px; color: var(--tf2-muted); text-decoration: none; transition: color .15s; }
.tf2-bar-nav a:hover { color: var(--tf2-accent); }
.tf2-bar-cards img { height: 22px; width: auto; }

/* MOBILE */
@media (max-width: 992px) {
  .tf2-footer-top-inner { flex-direction: column; padding: 24px 16px; gap: 20px; }
  .tf2-top-sep { width: 100%; height: 1px; align-self: auto; }
  .tf2-footer-main-inner { grid-template-columns: 1fr; padding: 20px 16px; gap: 0; }
  .tf2-brand { padding-bottom: 20px; border-bottom: 1px solid var(--tf2-border); }
  .tf2-footer-col { border-bottom: 1px solid var(--tf2-border); }
  .tf2-col-toggle { padding: 13px 0; }
  .tf2-col-arrow { display: block; }
  .tf2-links {
    max-height: 0; overflow: hidden; padding-top: 0; gap: 0;
    transition: max-height .3s ease, padding .3s ease, gap .3s ease;
  }
  .tf2-footer-col.tf2-open .tf2-links { max-height: 600px; padding-top: 10px; gap: 9px; }
  .tf2-footer-col.tf2-open .tf2-col-arrow { transform: rotate(180deg); }
  .tf2-contact { max-height: 0; overflow: hidden; padding-top: 0; transition: max-height .3s ease, padding .3s ease; }
  .tf2-footer-col.tf2-open .tf2-contact { max-height: 600px; padding-top: 10px; }
  .tf2-etbis { display: none; }
  .tf2-footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 14px 16px; gap: 10px; }
  .tf2-footer-bar-inner { flex-direction: column; text-align: center; gap: 10px; padding: 12px 16px; }
  .tf2-bar-nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .tf2-rating { width: 100%; justify-content: center; }
  .tf2-security { justify-content: center; }
  .tf2-cargo { justify-content: center; }
}
@media (max-width: 576px) {
  .tf2-app-btns { flex-direction: row; flex-wrap: wrap; }
  .tf2-nl-form { max-width: 100%; }
}

/* ================================================================
   AŞAMA 9 — TASARIM & ÖZELLİK İYİLEŞTİRMELERİ
   ================================================================ */

/* 1. Discount Badge — kırmızı pill */
.card-discount-badge {
  background: linear-gradient(135deg,#e53935 0%,#c62828 100%) !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  box-shadow: 0 2px 8px rgba(229,57,53,.35) !important;
  letter-spacing: .3px;
}

/* 2. Skeleton Loading — shimmer */
@keyframes th-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.card-product.th-skeleton .image,
.card-product.th-skeleton .itlewrtwrts,
.card-product.th-skeleton .card-sale-price,
.card-product.th-skeleton .card-discount-badge {
  background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%) !important;
  background-size: 400px 100% !important;
  animation: th-shimmer 1.4s infinite linear;
  border-radius: 6px;
  color: transparent !important;
  border-color: transparent !important;
}
.card-product.th-skeleton .image { min-height: 200px; }
.card-product.th-skeleton .itlewrtwrts { height: 14px; margin: 8px 0; }
.card-product.th-skeleton .card-sale-price { height: 18px; width: 70px; }

/* 3. Breadcrumb — separator + mobile collapse */
.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  content: "\f105" !important;
  font-weight: 900;
  font-size: 11px;
  color: #aaa;
}
@media (max-width: 576px) {
  .breadcrumb { flex-wrap: nowrap; overflow: hidden; }
  .breadcrumb-item:not(:last-child):not(:first-child) { display: none; }
  .breadcrumb-item:first-child::after { content: " / ..."; color: #aaa; }
}

/* 4. Kart Overlay Butonları — hover görünürlük */
.card-product .buttons-wrapper.right-to-left {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.card-product:hover .buttons-wrapper.right-to-left {
  opacity: 1;
  transform: translateX(0);
}
.card-product .buttons-wrapper.down-to-top {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.card-product:hover .buttons-wrapper.down-to-top {
  opacity: 1;
  transform: translateY(0);
}

/* 5. Sticky CTA Bar */
.pp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 2px solid var(--main-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.pp-sticky-cta.visible { transform: translateY(0); }
.pp-sticky-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pp-sticky-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-sticky-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--main-color);
  white-space: nowrap;
}
.pp-sticky-btn { flex: 0 0 auto; padding: 9px 20px !important; font-size: 14px !important; }
@media (max-width: 576px) {
  .pp-sticky-name { display: none; }
  .pp-sticky-price { font-size: 15px; }
}

/* 6. Son Stok Badge */
.pp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  color: #c62828;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 6px;
  animation: th-stock-pulse 2s ease-in-out infinite;
}
@keyframes th-stock-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(198,40,40,0); }
  50% { box-shadow: 0 0 0 4px rgba(198,40,40,.15); }
}

/* 7. Aynı Gün Kargo Badge */
.pp-sameday-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg,#e8f5e9,#f1f8e9);
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* 8. X Kişi İnceliyor */
.pp-viewers {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  color: #e65100;
  margin-bottom: 12px;
}
.pp-viewers i { font-size: 15px; }
.pp-viewers-count { font-weight: 700; }

/* 9. Filtre Tag'leri */
.th-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 4px;
}
.th-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff3e0;
  border: 1px solid #ffcc80;
  color: #e65100;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: background .15s;
}
.th-filter-tag:hover { background: #ffe0b2; }
.th-tag-x { font-size: 14px; line-height: 1; margin-left: 2px; opacity: .7; }
.th-filter-tag:hover .th-tag-x { opacity: 1; }

/* 10. Son Gördüklerin Widget */
.th-recently-viewed { padding: 24px 0 8px; }
.th-rv-title { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 14px; }
.th-rv-list { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; }
.th-rv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex: 0 0 120px;
  text-decoration: none;
  color: inherit;
}
.th-rv-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}
.th-rv-name {
  font-size: 12px;
  color: #333;
  margin-top: 6px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.th-rv-price { font-size: 13px; font-weight: 700; color: var(--main-color); margin-top: 4px; }

/* 11. Sticky Header Shrink */
.tilbehead19-header { transition: padding .3s ease, box-shadow .3s ease; }
.tilbehead19-header.th-compact {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.tilbehead19-header.th-compact .header-logo img {
  max-height: 36px;
  transition: max-height .3s ease;
}

/* ================================================================
   PDP v2 — Yeni Ürün Detay Sayfası
   Tüm CSS .pdp-v2 scope'u altındadır.
   Shuttle temasıyla uyumlu token'lar kullanılır.
   ================================================================ */

.pdp-v2 {
  --pdp-primary: var(--main-color);
  --pdp-primary-hover: var(--main-color2);
  --pdp-text: #0F1111;
  --pdp-text-muted: #565959;
  --pdp-text-light: #999;
  --pdp-border: #E7E9EA;
  --pdp-border-light: #f0f0f0;
  --pdp-bg: #fff;
  --pdp-bg-soft: #f5f5f5;
  --pdp-radius-sm: 6px;
  --pdp-radius-md: 10px;
  --pdp-radius-lg: 14px;
  --pdp-radius-full: 999px;
  --pdp-shadow: 0 8px 24px rgba(0,0,0,.09);
  --pdp-shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --pdp-transition: .2s ease;
  --pdp-success: #2e7d32;
  --pdp-warning: #e65100;
  --pdp-gallery-max-h: 520px;
  font-family: inherit;
}

/* Hero grid */
.pdp-v2 .pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border-radius: var(--pdp-radius-lg);
  padding: 24px;
  box-shadow: var(--pdp-shadow);
  border: 1px solid var(--pdp-border);
  margin-bottom: 24px;
}

/* Gallery sticky */
.pdp-v2 .pdp-gallery {
  position: sticky;
  top: 80px;
}

/* Gallery wrapper */
.pdp-v2 .gallery-wrapper {
  display: flex;
  gap: 10px;
}

/* Thumbnail sütunu */
.pdp-v2 .gallery-thumbs { flex-shrink: 0; }

.pdp-v2 .thumb-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: var(--pdp-gallery-max-h);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--pdp-primary) var(--pdp-bg-soft);
}

.pdp-v2 .thumb-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--pdp-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .65;
  transition: opacity var(--pdp-transition), border-color var(--pdp-transition);
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  padding: 0;
}
.pdp-v2 .thumb-item:hover { opacity: .85; }
.pdp-v2 .thumb-item.active { border-color: var(--pdp-primary); opacity: 1; }
.pdp-v2 .thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* Video thumb overlay */
.pdp-v2 .thumb-item.has-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  border-radius: var(--pdp-radius-sm);
  transition: opacity var(--pdp-transition);
}
.pdp-v2 .thumb-item.has-video:hover::after { opacity: .2; }

.pdp-v2 .thumb-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: var(--pdp-radius-full);
  color: #fff;
  font-size: 9px;
  z-index: 2;
}

/* Gallery main */
.pdp-v2 .gallery-main {
  position: relative;
  flex: 1;
  border-radius: var(--pdp-radius-md);
  overflow: hidden;
  background: var(--pdp-bg-soft);
}

.pdp-v2 .gallery-image-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-v2 .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--pdp-transition);
}

.pdp-v2 .gallery-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Gallery badges */
.pdp-v2 .gallery-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.pdp-v2 .gallery-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: var(--pdp-radius-sm);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  box-shadow: var(--pdp-shadow-sm);
}
.pdp-v2 .badge-fast { color: var(--pdp-primary); }
.pdp-v2 .badge-free { color: var(--pdp-success); }

/* Gallery actions */
.pdp-v2 .gallery-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.pdp-v2 .gallery-actions .action-btn,
.pdp-v2 .gallery-actions > a,
.pdp-v2 .gallery-actions > button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--pdp-radius-full);
  color: var(--pdp-text-muted);
  font-size: 14px;
  box-shadow: var(--pdp-shadow-sm);
  transition: color var(--pdp-transition), transform var(--pdp-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.pdp-v2 .gallery-actions .action-btn:hover,
.pdp-v2 .gallery-actions > a:hover,
.pdp-v2 .gallery-actions > button:hover {
  color: var(--pdp-primary);
  transform: scale(1.08);
}

/* Gallery nav */
.pdp-v2 .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--pdp-radius-full);
  color: var(--pdp-text);
  box-shadow: var(--pdp-shadow-sm);
  transition: background var(--pdp-transition), color var(--pdp-transition), transform var(--pdp-transition);
  z-index: 2;
  border: none;
  cursor: pointer;
}
.pdp-v2 .gallery-nav:hover {
  background: var(--pdp-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.pdp-v2 .nav-prev { left: 10px; }
.pdp-v2 .nav-next { right: 10px; }

/* Gallery dots */
.pdp-v2 .gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 6px;
}
.pdp-v2 .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--pdp-radius-full);
  background: rgba(255,255,255,.5);
  transition: background var(--pdp-transition), width var(--pdp-transition);
}
.pdp-v2 .dot.active { background: #fff; width: 20px; }

/* Info panel */
.pdp-v2 .pdp-info .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Info badges */
.pdp-v2 .info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.pdp-v2 .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--pdp-radius-full);
  font-size: 11px;
  font-weight: 500;
}
.pdp-v2 .badge-bulk  { background: rgba(255,96,0,.1); color: var(--pdp-primary); }
.pdp-v2 .badge-transfer { background: #fff3e0; color: var(--pdp-warning); }
.pdp-v2 .badge-cargo { background: #e8f5e9; color: var(--pdp-success); }

/* Info header */
.pdp-v2 .info-header { margin-bottom: 8px; }
.pdp-v2 .info-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--pdp-text);
  line-height: 1.4;
  margin: 0 0 8px;
}
.pdp-v2 .title-brand {
  color: var(--pdp-primary);
  font-weight: 700;
  text-decoration: none;
}
.pdp-v2 .title-brand:hover { text-decoration: underline; }

.pdp-v2 .info-tagline-wrap {
  position: relative;
  max-height: 46px;
  overflow: hidden;
  margin-top: 6px;
}
.pdp-v2 .info-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--pdp-text-muted);
  margin: 0;
}
.pdp-v2 .info-more-link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding-left: 24px;
  background: linear-gradient(to right, transparent, #fff 30%);
  font-size: 11px;
  font-weight: 500;
  color: var(--pdp-primary);
  text-decoration: none;
}

/* Info stats */
.pdp-v2 .info-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--pdp-border-light);
}
.pdp-v2 .stats-divider {
  width: 3px;
  height: 3px;
  background: var(--pdp-border);
  border-radius: var(--pdp-radius-full);
  flex-shrink: 0;
}
.pdp-v2 .stats-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--pdp-text-muted);
  text-decoration: none;
  transition: color var(--pdp-transition);
}
.pdp-v2 .stats-item:hover { color: var(--pdp-primary); }
.pdp-v2 .stats-item i { font-size: 12px; }
.pdp-v2 .stats-item .spans { font-weight: 500; }

/* Price area */
.pdp-v2 .price-area { margin-bottom: 16px; }
.pdp-v2 .price-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pdp-border-light);
}
.pdp-v2 .price-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.pdp-v2 .price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--pdp-primary);
  color: #fff;
  border-radius: var(--pdp-radius-sm);
  flex-shrink: 0;
}
.pdp-v2 .price-tag span { font-size: 15px; font-weight: 700; line-height: 1; }
.pdp-v2 .price-tag small { font-size: 8px; font-weight: 600; opacity: .85; margin-top: 2px; }

.pdp-v2 .price-content { display: flex; flex-direction: column; gap: 3px; }
.pdp-v2 .price-now {
  font-size: 28px;
  font-weight: 700;
  color: #B12704;
  line-height: 1;
}
.pdp-v2 .price-meta del { font-size: 13px; color: var(--pdp-text-light); }

.pdp-v2 .price-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid var(--pdp-border-light);
  min-width: 0;
}
.pdp-v2 .info-line,
.pdp-v2 .info-line-havale {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px 2px 2px;
  border-radius: var(--pdp-radius-sm);
  font-size: 12px;
  white-space: nowrap;
}
.pdp-v2 .info-line { background: var(--pdp-bg-soft); color: var(--pdp-text-muted); }
.pdp-v2 .info-line-havale { background: #fff8e1; color: var(--pdp-warning); }
.pdp-v2 .info-line i,
.pdp-v2 .info-line-havale i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pdp-radius-sm);
  font-size: 11px;
  flex-shrink: 0;
}
.pdp-v2 .info-line i { background: #e0e0e0; color: var(--pdp-text-muted); }
.pdp-v2 .info-line-havale i { background: var(--pdp-warning); color: #fff; }
.pdp-v2 .info-line strong,
.pdp-v2 .info-line-havale strong { font-weight: 600; }

/* Payment features */
.pdp-v2 .price-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 0 6px;
}
.pdp-v2 .feature-item { display: flex; align-items: center; gap: 7px; }
.pdp-v2 .feature-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pdp-radius-sm);
  font-size: 13px;
  background: rgba(255,96,0,.08);
  color: var(--pdp-primary);
  flex-shrink: 0;
}
.pdp-v2 .feature-text { display: flex; flex-direction: column; line-height: 1.2; }
.pdp-v2 .feature-text strong { font-size: 12px; font-weight: 600; color: var(--pdp-primary); }
.pdp-v2 .feature-text span { font-size: 10px; color: var(--pdp-text-light); }

/* Variant module */
.pdp-v2 .variant-module-elegant { margin: 14px 0; }
.pdp-v2 .variant-section-elegant {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pdp-v2 .variant-section-elegant:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.pdp-v2 .variant-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pdp-v2 .variant-label-elegant { font-size: 13px; font-weight: 600; color: #333; }
.pdp-v2 .variant-selected { font-size: 12px; font-weight: 500; color: #999; }
.pdp-v2 .variant-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-v2 .variant-chip {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--pdp-radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all var(--pdp-transition);
  text-decoration: none;
  min-width: 60px;
  text-align: center;
  display: inline-block;
}
.pdp-v2 .variant-chip:hover {
  border-color: var(--pdp-primary);
  background: rgba(255,96,0,.04);
  color: var(--pdp-primary);
}
.pdp-v2 .variant-chip.active {
  border-color: var(--pdp-primary);
  background: var(--pdp-primary);
  color: #fff;
  font-weight: 600;
}
.pdp-v2 .variant-chip.disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

/* Renk swatchi */
.pdp-v2 .variant-color-chip {
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--pdp-radius-full);
  padding: 3px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: unset;
  text-align: center;
}
.pdp-v2 .variant-color-chip:hover {
  background: transparent;
  border-color: var(--pdp-primary);
  transform: scale(1.08);
}
.pdp-v2 .variant-color-chip.active {
  border-color: var(--pdp-primary);
  background: transparent;
  box-shadow: 0 0 0 2px rgba(255,96,0,.25);
}
.pdp-v2 .color-swatch {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: var(--pdp-radius-full);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.1);
}
.pdp-v2 .swatch-label {
  font-size: 10px;
  color: var(--pdp-text-muted);
  max-width: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

/* Cart buttons */
.pdp-v2 .info-cart {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pdp-v2 .cart-add {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 20px;
  background: var(--pdp-primary);
  color: #fff;
  border: none;
  border-radius: var(--pdp-radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--pdp-transition), transform var(--pdp-transition);
  text-decoration: none;
}
.pdp-v2 .cart-add:hover {
  background: var(--pdp-primary-hover);
  transform: translateY(-2px);
}
.pdp-v2 .cart-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 20px;
  background: #FFD814;
  color: #0F1111;
  border: none;
  border-radius: var(--pdp-radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--pdp-transition), transform var(--pdp-transition);
  text-decoration: none;
}
.pdp-v2 .cart-buy:hover { background: #F0C914; transform: translateY(-2px); }
.pdp-v2 .cart-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--pdp-radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--pdp-transition);
  text-decoration: none;
}
.pdp-v2 .cart-whatsapp:hover { background: #1ebe5a; }

/* Campaign area */
.pdp-v2 .campaign-area {
  border: 1px solid var(--pdp-border);
  border-radius: var(--pdp-radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.pdp-v2 .campaign-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--pdp-border-light);
}
.pdp-v2 .campaign-item:last-child { border-bottom: none; }
.pdp-v2 .campaign-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,96,0,.1);
  color: var(--pdp-primary);
  border-radius: var(--pdp-radius-sm);
  font-size: 15px;
  flex-shrink: 0;
}
.pdp-v2 .campaign-content { display: flex; flex-direction: column; gap: 1px; }
.pdp-v2 .campaign-content strong { font-size: 13px; font-weight: 600; color: var(--pdp-text); }
.pdp-v2 .campaign-content span { font-size: 11px; color: var(--pdp-text-muted); }

/* Trust section */
.pdp-v2 .info-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  background: var(--pdp-bg-soft);
  border-radius: var(--pdp-radius-md);
  margin-bottom: 14px;
}
.pdp-v2 .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  transition: transform var(--pdp-transition);
}
.pdp-v2 .trust-item:hover { transform: translateY(-2px); }
.pdp-v2 .trust-item i { font-size: 18px; color: var(--pdp-primary); }
.pdp-v2 .trust-item span { font-size: 11px; color: var(--pdp-text-muted); line-height: 1.2; }

/* Responsive */
@media (max-width: 992px) {
  .pdp-v2 .pdp-hero {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 20px;
  }
  .pdp-v2 .pdp-gallery { position: relative; top: 0; }
  .pdp-v2 .price-features { grid-template-columns: repeat(2, 1fr); }
  .pdp-v2 .info-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pdp-v2 .gallery-thumbs { display: none; }
  .pdp-v2 .gallery-dots { display: flex; }
  .pdp-v2 .price-top { flex-direction: column; gap: 10px; }
  .pdp-v2 .price-info {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--pdp-border-light);
    padding-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .pdp-v2 .pdp-hero { padding: 12px; }
  .pdp-v2 .info-badges { display: none; }
  .pdp-v2 .price-now { font-size: 22px; }
  .pdp-v2 .cart-add,
  .pdp-v2 .cart-buy { padding: 11px 14px; font-size: 14px; }
  .pdp-v2 .info-trust { grid-template-columns: repeat(2, 1fr); padding: 10px; }
  .pdp-v2 .price-features { grid-template-columns: repeat(2, 1fr); }
}
