
/* Ç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: 700;
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.5;
}

.cp-price-now {
    font-size: 17px;
    font-weight: 700;
    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;
}


/* ✅ 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;
    border-radius: 50px;
}

/* 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;
    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;
    }
    
/* [C2-3] Old notification-dropdown (420px) removed — v2 at line ~18313 uses 380px */
/* 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-delivery 1s infinite;
}

@keyframes pulse-delivery{
    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: 700;
    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('../resimler1/banks-logos.png');
    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: 700;
    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: "Poppins","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: 700;
    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: 700
}

.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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 400;
    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
}


/* ========================================
   RESTORED GENERAL CSS — C4-4e
   Sections below were mis-extracted in C4-4b,
   restored via style-shadow.css in C4-4d,
   merged back into style.css in C4-4e.
   ======================================== */

/* ======================================================
   SECTION: Video Player
   Lines: approx 7340–7368
   Purpose: video embed, play button overlay
   ====================================================== */

.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
    }
}


/* ======================================================
   SECTION: Global Link Colors & Overlay
   Lines: approx 8344–8409
   Purpose: global anchor color (--main-color), hover color,
            loading overlay, op-black backdrop
   ====================================================== */

.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
}

/* ======================================================
   SECTION: Legacy Desktop Header (header.desktop)
   Lines: approx 8411–8731
   Purpose: desktop header layout, top bar, logo, search
            form, search button, h-center container
   ====================================================== */

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
}

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;
    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
}

/* ======================================================
   SECTION: Legacy Mega Menu & Navigation
   Lines: approx 8732–9059
   Purpose: mega menu navbar, nav items, dropdown menu,
            category icons, single-menu containers
   ====================================================== */

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
}

/* ======================================================
   SECTION: Social Icons, ETBİS & Legacy Footer
   Lines: approx 9060–9499
   Purpose: social menu icons, ETBİS badge, legacy footer
            layout, logo-area, info section, secure images
   ====================================================== */

.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
}

/* ======================================================
   SECTION: Mobile Sidebar Menu
   Lines: approx 9500–9686
   Purpose: sidebar-menu-type-2, mobile close button,
            short links, scrollbar, mobil-area footer
   ====================================================== */

.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
}

/* ======================================================
   SECTION: Category Page – Filters & Ordering
   Lines: approx 10500–11025
   Purpose: category filter list, ordering, lag-checkbox,
            pattern-group showcase, product card content,
            product-details-tab
   ====================================================== */

.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: 400;
    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
}

/* ======================================================
   SECTION: Mega Menu – Submenu Items
   Lines: approx 11100–11505
   Purpose: single-menu-container, subtitle images,
            mega-menu nav-link overrides, dropdown categories,
            header cart hover badges
   ====================================================== */

.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
}

/* ======================================================
   SECTION: 404 Error Page & Variant Box
   Lines: approx 11026–11099
   Purpose: 404 page layout, error buttons, variant-box,
            e404 page type styling
   ====================================================== */

.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
}

.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: 400
}

.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%
}

/* ======================================================
   SECTION: Product Card – Hover & Action Buttons
   Lines: approx 11506–11649
   Purpose: product-view-select, card-product hover effects,
            right-to-left / down-to-top button wrappers,
            carousel controls
   ====================================================== */

.product-view-select {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center
}

.video-play i {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center
}



#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(images/masaustu-banner/transparan-arka-plan.webp)!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(images/masaustu-banner/transparan-arka-plan.webp)!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(images/masaustu-banner/transparan-arka-plan.webp)!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(images/masaustu-banner/transparan-arka-plan.webp)!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
}

/* ======================================================
   SECTION: Homepage – Showcase Modules (show-category)
   Lines: approx 11650–12099
   Purpose: show-category7/8/9/10, firsat-urunleri-solmenu,
            custom-image-container, owl-wrapper overrides,
            background-image showcase sections
   ====================================================== */

.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(images/masaustu-banner/transparan-arka-plan.webp)!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
    }
}


.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
}

/* ======================================================
   SECTION: Legacy Header – Cart Hover Dropdown
   Lines: approx 12100–12579
   Purpose: header-cart-hover dropdown, auth-links,
            btn-remove in dropdown, header-cart-summary-1,
            cart buttons, table borders
   ====================================================== */

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
}

/* ======================================================
   SECTION: Ajax Shopping Cart
   Lines: approx 12580–12899
   Purpose: ajax-shopping-cart dropdown, cart empty state,
            product rows in dropdown, image/name/price layout
   ====================================================== */

.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
    }
}


.sale-price-basket {
    padding: 2px;
    color: #454545;
    font-size: 10px;
    font-weight: 400;
    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
}


.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
}

/* ======================================================
   SECTION: Bundle / PBC & Search Autocomplete
   Lines: approx 12900–13399
   Purpose: pbc-question buttons, pbc-items, breadcrumb,
            product-detail-description, payment address
            info block, easy-autocomplete search results
   ====================================================== */

.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
    }

    /* [C2-3] li:hover removed — ROOT rule covers all breakpoints */

    .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
    }

    /* [C2-3] li:hover removed — ROOT rule covers all breakpoints */

    .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: 400
    }

    .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
    }
}


/* ======================================================
   SECTION: Free Cargo & Swiper Navigation
   Lines: approx 14100–14364
   Purpose: free-cargo shipping info bar, cargo firma logos,
            odeme-box, swiper navigation buttons, urun-info
            container, unique-info slider
   ====================================================== */

.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
}

.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
}


/* ======================================================
   SECTION: Social Sharing Modal & Product Title
   Lines: approx 14782–14998
   Purpose: social share modal (ana-modal), share buttons,
            copy-to-clipboard, tooltips, product title
            (itlewrtwrts)
   ====================================================== */

.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
}

.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
}

.ana-social-sh img {
    border-radius: 50px
}

.ana-share-icon {
    padding: 5px 10px
}

.ana-tooltip {
    position: inherit;
    opacity: 1
}

.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
}


.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
    }
}


/* ======================================================
   SECTION: Product Buttons (PDP)
   Lines: approx 16208–16499
   Purpose: btn-cart, btn-fast-buy, product-favourite,
            product-quantity, product-buttons-container,
            desktop/mobile visibility toggles
   ====================================================== */

.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: 400
}

.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
    }
}

.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
    }
}


/* ========================================
   END RESTORED GENERAL CSS
   ======================================== */

/* ===============================
   CARD PRODUCT – FINAL LAYOUT
   =============================== */

/* ANA BLOK */

.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: 700;
      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: 700;
      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: 700;
      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: 700;
      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;

}
            }



/* ================================================================
   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;
}


/* 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; }
}


/* 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;
}

/* === A11y: Skip Link === */
.tilbehead19-skip-link{position:absolute;top:-100%;left:16px;z-index:10000;padding:12px 24px;background:var(--main-color);color:#fff;font-weight:700;border-radius:0 0 8px 8px;text-decoration:none;transition:top .2s}
.tilbehead19-skip-link:focus{top:0}


/* === Category SEO Programmatic Content === */
.th-cat-seo{max-width:900px;margin:48px auto 0;padding:0 16px;color:#444;line-height:1.7}
.th-cat-seo__heading{font-size:18px;font-weight:700;color:#222;margin:0 0 12px;padding-bottom:8px;border-bottom:2px solid var(--main-color,#ff6000)}
.th-cat-seo__intro,.th-cat-seo__guide,.th-cat-seo__faq,.th-cat-seo__links{margin-bottom:32px}
.th-cat-seo__intro p,.th-cat-seo__guide p,.th-cat-seo__faq-a{font-size:14px;margin:0;color:#555}
.th-cat-seo__link-grid{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.th-cat-seo__link{display:inline-block;padding:6px 14px;border:1px solid #ddd;border-radius:20px;font-size:13px;color:#333;text-decoration:none;transition:border-color .2s,color .2s}
.th-cat-seo__link:hover{border-color:var(--main-color,#ff6000);color:var(--main-color,#ff6000)}
.th-cat-seo__faq-item{margin-bottom:8px;border:1px solid #e8e8e8;border-radius:6px;overflow:hidden}
.th-cat-seo__faq-item[open]{margin-bottom:12px}
.th-cat-seo__faq-q{font-size:15px;font-weight:600;color:#222;padding:12px 16px;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between}
.th-cat-seo__faq-q::-webkit-details-marker{display:none}
.th-cat-seo__faq-q::after{content:'+';font-size:18px;font-weight:400;color:#999;flex-shrink:0;margin-left:12px}
.th-cat-seo__faq-item[open] .th-cat-seo__faq-q::after{content:'\2212'}
.th-cat-seo__faq-a{font-size:14px;padding:0 16px 12px;margin:0}
@media(max-width:768px){.th-cat-seo{margin-top:32px;padding:0 12px}.th-cat-seo__heading{font-size:16px}}

/* === SEO Landing Page Engine === */
.th-lp{max-width:900px;margin:48px auto 0;padding:0 16px;color:#444;line-height:1.7}
.th-lp__title{font-size:22px;font-weight:700;color:#222;margin:0 0 16px}
.th-lp__heading{font-size:18px;font-weight:700;color:#222;margin:0 0 12px;padding-bottom:8px;border-bottom:2px solid var(--main-color,#ff6000)}
.th-lp__intro,.th-lp__guide,.th-lp__faq,.th-lp__links{margin-bottom:32px}
.th-lp__intro p,.th-lp__guide p,.th-lp__faq-a{font-size:14px;margin:0;color:#555}
.th-lp__link-grid{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.th-lp__link{display:inline-block;padding:6px 14px;border:1px solid #ddd;border-radius:20px;font-size:13px;color:#333;text-decoration:none;transition:border-color .2s,color .2s}
.th-lp__link:hover{border-color:var(--main-color,#ff6000);color:var(--main-color,#ff6000)}
.th-lp__faq-item{margin-bottom:8px;border:1px solid #e8e8e8;border-radius:6px;overflow:hidden}
.th-lp__faq-item[open]{margin-bottom:12px}
.th-lp__faq-q{font-size:15px;font-weight:600;color:#222;padding:12px 16px;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between}
.th-lp__faq-q::-webkit-details-marker{display:none}
.th-lp__faq-q::after{content:'+';font-size:18px;font-weight:400;color:#999;flex-shrink:0;margin-left:12px}
.th-lp__faq-item[open] .th-lp__faq-q::after{content:'\2212'}
.th-lp__faq-a{font-size:14px;padding:0 16px 12px;margin:0}
@media(max-width:768px){.th-lp{margin-top:32px;padding:0 12px}.th-lp__title{font-size:19px}.th-lp__heading{font-size:16px}}
.th-lp__related{margin-top:32px}
/* ── Internal Linking Engine (Kategori → Landing) ── */
.th-il{max-width:1200px;margin:40px auto 0;padding:0 16px}
.th-il__heading{font-size:18px;font-weight:700;color:#222;margin:0 0 8px;padding-bottom:8px;border-bottom:2px solid var(--main-color,#ff6000)}
.th-il__desc{font-size:13px;color:#777;margin:0 0 14px}
.th-il__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:10px}
.th-il__link{display:block;padding:10px 14px;background:#f8f8f8;border-radius:6px;color:#333;text-decoration:none;font-size:14px;transition:background .2s,color .2s}
.th-il__link:hover{background:var(--main-color,#ff6000);color:#fff;text-decoration:none}
@media(max-width:576px){.th-il__grid{grid-template-columns:1fr 1fr}.th-il__link{font-size:13px;padding:8px 10px}}

/* ============================================
   C7-2: Product Page Conversion Engine
============================================ */

/* ── Trust Badges ── */
.pdp2-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:12px 0 0}
.pdp2-trust-item{display:flex;align-items:center;gap:6px;padding:8px 10px;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:8px;font-size:12px;color:#166534;font-weight:600}
.pdp2-trust-item i{font-size:14px;color:#16a34a;flex-shrink:0}
@media(max-width:768px){.pdp2-trust{grid-template-columns:repeat(2,1fr)}}
@media(max-width:400px){.pdp2-trust{grid-template-columns:1fr 1fr;gap:6px}.pdp2-trust-item{padding:6px 8px;font-size:11px}}

/* ── Product Highlights ── */
.pdp2-highlights{margin:12px 0 0;padding:12px 14px;background:#fefce8;border:1px solid #fef08a;border-radius:10px}
.pdp2-hl-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}
.pdp2-hl-list li{display:flex;align-items:center;gap:8px;font-size:13px;color:#713f12;line-height:1.3}
.pdp2-hl-list li i{color:#ca8a04;font-size:12px;flex-shrink:0}

/* ── Sticky CTA mobile offset (above bottom nav) ── */
@media(max-width:768px){.pp-sticky-cta{bottom:56px}}


/* ── Cart: Trust Icons under CTA ── */
.cart-trust-icons{display:flex;justify-content:center;gap:16px;margin-top:8px;font-size:11px;color:#6b7280}
.cart-trust-icons span{display:flex;align-items:center;gap:4px}
.cart-trust-icons i{font-size:12px;color:#16a34a}

/* ============================================
   C7-5: Mobile UX Optimization
============================================ */

/* ── Mobile body padding for bottom nav ── */
@media(max-width:768px){body{padding-bottom:72px}}

/* ── Mobile bottom nav: min tap target 44px ── */
@media(max-width:768px){
  .tilbehomeMobilMenu456-menu-item a{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:44px;min-width:44px;padding:4px 0;text-decoration:none}
  .tilbehomeMobilMenu456-menu-item i{font-size:20px}
}

/* ── Mobile filter buttons: larger tap targets ── */
@media(max-width:768px){
  .cat-responsive-buttons .btn-group{width:100%;gap:8px}
  .cat-responsive-buttons .btn{flex:1;min-height:44px;font-size:14px;font-weight:600;border-radius:8px}
}


/* ── Mobile cart: better spacing ── */
@media(max-width:576px){
  .shopping-cart-1 .btn-remove{min-width:36px;min-height:36px}
  .shopping-cart-1 .btn-minus-99,.shopping-cart-1 .btn-plus99{min-width:36px;min-height:36px;display:flex;align-items:center;justify-content:center}
}

/* ── Mobile search: prevent iOS zoom (16px min) ── */
@media(max-width:768px){
  .tilbehead19-search-input{min-height:44px;font-size:16px !important}
}

/* ── C3-3: Blog card image CLS shield ── */
.card-blog .image{aspect-ratio:3/2;overflow:hidden}
.card-blog .image img{width:100%;height:100%;object-fit:cover;display:block}
