/* site-layout.css - extracted from header.php */

.supplement-category-list {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  overflow-x: auto !important;
  overflow-y: visible !important;
}

/* Dropdown menüdeki ikonları boyutlandır */
.supplement-category-item .dropdown-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.supplement-category-item .dropdown-item span svg,
.supplement-category-item .dropdown-item span i {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.supplement-category-list::-webkit-scrollbar {
  height: 6px;
}

.supplement-category-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.supplement-category-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.supplement-category-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.supplement-category-item {
  position: relative;
  flex: 0 0 106px;
}

.category-box {
  height: 112px;
  width: 106px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 6px;

  text-align: center;

  border: 1px solid #e4e9ef;
  border-radius: 10px;

  background: #f8fafc;

  color: #253247;
  text-decoration: none;

  transition: all .2s ease;
}

.category-box:hover,
.category-box.active {
  background: #73d1f6;
  border-color: #73d1f6;
  color: #fff;
}

.category-icon {
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 5px;
}

.category-icon i {
  color: #252b36;
}

.category-box span {
  display: block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}

/* Kategori SVG ikonları (DB'den yüklenen temiz ikonlar) */
.category-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.category-icon {
  color: #252b36;
}

.category-tree-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
  margin: 0 auto;
}

.symbol-label svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Dropdown */

.category-dropdown {
  display: none;

  position: absolute;

  top: 112px;
  left: 0;

  width: 335px;

  padding: 12px 0;

  background: #ff9eae;

  border-radius: 0 10px 10px 10px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

  z-index: 1000;
}

.category-dropdown a {
  display: flex;
  align-items: center;

  min-height: 54px;

  padding: 8px 22px;

  color: #172033;

  font-size: 12px;
  font-weight: 700;
  line-height: 18px;

  text-decoration: none;

  transition: all .15s ease;
}

.category-dropdown a:hover {
  background: rgba(255, 255, 255, .16);
  padding-left: 26px;
}

.category-dropdown .dropdown-all {
  margin-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

/* Sağdaki kategoriler */

.category-dropdown-right {
  left: auto;
  right: 0;

  border-radius: 10px 0 10px 10px;
}

/* Mobile */

@media (max-width: 767.98px) {

  .supplement-category-item {
    flex: 0 0 100px;
  }

  .category-box {
    width: 100px;
    height: 105px;
  }

  .category-dropdown {
    width: 290px;
  }

}

/* =========================================
FILTER SIDEBAR - MOBILE COLLAPSE
========================================= */

.filter-toggle-icon {
  transition: transform 0.2s ease;
}

#filterContent.show ~ .filter-toggle-icon,
.filter-toggle-icon.rotated {
  transform: rotate(180deg);
}

/* =========================================
FILTER SIDEBAR
========================================= */

.filter-section {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #edf0f3;
}

.filter-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

/* Header */

.filter-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #1f2937;

  font-weight: 800;

  cursor: pointer;

  padding: 2px 0 10px;
}

.filter-section-header i {
  transition: transform .2s ease;
}

.filter-section-header.collapsed i {
  transform: rotate(180deg);
}

/* Title */

.filter-title {
  color: #1f2937;

  font-weight: 800;

  margin-bottom: 10px;
}

/* =========================================
CATEGORY TREE
========================================= */

.category-tree {
  position: relative;
}

.category-tree-parent {
  position: relative;
}

.category-tree-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  color: #253247;
  font-weight: 600;
}

.category-tree-icon {
  width: 20px;
  margin-right: 6px;
  text-align: center;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-tree-name {
  flex: 1;
}

.category-tree-link-main {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 32px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease;
}

.category-tree-link-main:hover,
.category-tree-link-main.active,
.category-tree-label.active .category-tree-link-main,
.category-tree-label.in-path > .category-tree-link-main {
  color: #009ef7;
}

.category-tree-toggle {
  border: 0;
  background: transparent;
  padding: 4px;
  line-height: 1;
  color: #7e8299;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.category-tree-toggle i {
  transition: transform .2s ease;
}

.category-tree-toggle.collapsed i,
.category-tree-toggle[aria-expanded="false"] i {
  transform: rotate(-90deg);
}

.category-tree-children {
  margin-left: 10px;
  padding-left: 8px;
  border-left: 1px solid #e4e8ed;
}

.category-tree-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  margin-left: 0;
  padding: 4px 0 4px 10px;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s ease;
}

.category-tree-link.category-tree-all {
  margin-left: 0;
  padding-left: 0;
  font-weight: 600;
}

.category-tree-link.category-tree-all::before,
.category-tree-link.category-tree-all::after {
  display: none;
}

.category-tree-depth-1 .category-tree-link,
.category-tree-depth-2 .category-tree-link,
.category-tree-depth-3 .category-tree-link,
.category-tree-depth-4 .category-tree-link {
  font-size: 0.95em;
}

.category-tree-link:hover {
  color: #009ef7;
}

.category-tree-link.active {
  color: #009ef7;
  font-weight: 700;
}

.category-dropdown a.active {
  background: rgba(255, 255, 255, .22);
}

.category-count {
  color: #a1a5b7;

  margin-left: 3px;

}

/* =========================================
SEARCH
========================================= */

.filter-search {
  position: relative;
}

.filter-search input {
  height: 32px;

  padding-right: 35px;

  border-color: #e4e8ed;

  background-color: #f8fafc;

  border-radius: 6px;

}

.filter-search input::placeholder {
  color: #a1a5b7;
}

.filter-search input:focus {
  border-color: #009ef7;

  background: #fff;

  box-shadow: none;
}

.filter-search i {
  position: absolute;

  right: 11px;
  top: 50%;

  transform: translateY(-50%);

  color: #a1a5b7;

  font-size: 14px;

  pointer-events: none;
}

/* =========================================
CHECKBOX / RADIO
========================================= */

.filter-options {
  display: flex;
  flex-direction: column;

  gap: 6px;
}

.filter-checkbox,
.filter-radio {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin: 0;
  min-height: 18px;

}

.filter-checkbox input,
.filter-radio input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.checkbox-custom {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border: 1px solid #cbd2dc;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.filter-checkbox input:checked + .checkbox-custom {
  background: #009ef7;
  border-color: #009ef7;
}

.filter-checkbox input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  left: 4px;
  top: 1px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-custom {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border: 1px solid #cbd2dc;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.filter-radio input:checked + .radio-custom {
  border-color: #009ef7;
}

.filter-radio input:checked + .radio-custom::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #009ef7;
}

.filter-option-name {
  color: #374151;
  line-height: 18px;
}

.filter-count {
  color: #a1a5b7;
  margin-left: 3px;

}

.filter-more {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #009ef7;

  font-weight: 700;
  cursor: pointer;
}

.filter-more:hover {
  color: #007cc3;
}

.filter-options.filter-scroll {
  max-height: 190px;
  overflow-y: auto;
  padding-right: 4px;
}

.filter-options.filter-scroll::-webkit-scrollbar {
  width: 5px;
}

.filter-options.filter-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.filter-options.filter-scroll::-webkit-scrollbar-thumb {
  background: #d5d9e3;
  border-radius: 4px;
}

.price-slider {
  position: relative;
  height: 18px;
  margin: 0 3px;
}

.price-slider-track,
.price-slider-range {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 10px;
}

.price-slider-track {
  background: #e4e8ed;
}

.price-slider-range {
  background: #009ef7;
  left: 0;
  right: 0;
}

.price-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.price-range::-webkit-slider-thumb {
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #009ef7;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #009ef7;
  cursor: pointer;
  pointer-events: auto;
}

.price-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #009ef7;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #009ef7;
  cursor: pointer;
  pointer-events: auto;
}

.price-label {
  color: #6b7280;

  font-weight: 600;
}

#applyFilters {
  height: 38px;
  background: #009ef7;
  border-color: #009ef7;
  border-radius: 6px;

}

#applyFilters:hover {
  background: #0089d8;
  border-color: #0089d8;
}
.filter-product-count {
  opacity: .75;
  margin-left: 3px;
}

footer a {
  transition: all 0.2s ease;
}

footer a:hover {
  opacity: 1 !important;
}

footer .btn-icon {
  transition: all 0.2s ease;
}

footer .btn-icon:hover {
  background: rgba(32, 199, 199, 0.25) !important;
  transform: translateY(-2px);
}
.feature-item {
  position: relative;
}

@media (min-width: 1200px) {
  .feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50px;
    transform: translateY(-50%);
    background-color: #e4e6ef;
  }
}
#kt_app_hero .card {
  background: #fff;
  border: 1px solid #edf0f2 !important;
}

#kt_app_hero .form-control {
  background-color: #fff !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

#kt_app_hero .form-control:focus {
  border-color: #16a085 !important;
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.08);
}

#kt_app_hero .btn-light {
  background-color: #f5f6f7;
  border-color: transparent;
}

#kt_app_hero .btn-light:hover {
  background-color: #e9f7f3;
  color: #16a085;
}

.hover-bg-light:hover {
  background-color: #f8f9fa;
}

.caret-blink {
  display: inline-block;
  margin-left: 2px;
  color: #009ef7;
  font-weight: 700;
  animation: caret-blink 0.9s step-end infinite;
}

@keyframes caret-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ========== Site footer ========== */
.site-footer {
  margin-top: 3.75rem;
}

.site-footer__shell {
  position: relative;
  overflow: hidden;
  background: #062c47;
  border-radius: 24px 24px 0 0;
}

.site-footer__blob {
  position: absolute;
  border-radius: 50%;
  background: #20c7c7;
  opacity: 0.1;
  pointer-events: none;
}

.site-footer__blob--tr {
  width: 350px;
  height: 350px;
  top: -180px;
  right: -100px;
}

.site-footer__blob--bl {
  width: 250px;
  height: 250px;
  bottom: -160px;
  left: -80px;
}

.site-footer__logo {
  height: 52px;
  width: auto;
}

.site-footer__lead {
  max-width: 380px;
}

.site-footer__social {
  background: rgba(255, 255, 255, 0.1) !important;
}

.site-footer__store-badge {
  height: 44px;
  width: auto;
  display: block;
}

#popupModal .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 999999;
}
