/* OEO — Ürün kataloğu (PanelPC PCFinder tarzı) */

.catalog-page { padding: 1.5rem 0 4rem; background: #f8fafc; min-height: 60vh; }
.catalog-layout {
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .catalog-layout { grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
}

/* Sidebar */
.catalog-sidebar {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem;
  padding: 1.25rem; box-shadow: 0 4px 24px rgba(15,23,42,.04);
  position: sticky; top: 5.5rem;
}
.catalog-filter-head {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9375rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem;
}
.catalog-filter-head svg { color: #0d9488; flex-shrink: 0; }
.catalog-assistant {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
  border: 1px solid #99f6e4; border-radius: .875rem;
  padding: 1rem; margin-bottom: 1rem;
}
.catalog-assistant p { font-size: .8125rem; font-weight: 600; color: #0f766e; margin-bottom: .625rem; line-height: 1.4; }
.catalog-assistant a {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .8125rem; font-weight: 700; color: #0d9488;
}
.catalog-assistant a:hover { color: #0f766e; }
.catalog-search-wrap { position: relative; margin-bottom: 1.25rem; }
.catalog-search-wrap svg {
  position: absolute; left: .75rem; top: 50%; transform: translateY(-50%);
  width: 1rem; height: 1rem; color: #94a3b8; pointer-events: none;
}
.catalog-search::-webkit-search-decoration, .catalog-search::-webkit-search-cancel-button, .catalog-search::-webkit-search-results-button, .catalog-search::-webkit-search-results-decoration { display: none; -webkit-appearance: none; }
.catalog-search {
  width: 100%;
  padding: .625rem .75rem .625rem 2.5rem !important;
  border: 1px solid #e2e8f0;
  border-radius: .625rem;
  font-size: .875rem;
  font-family: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.catalog-search:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: #fff;
}

.catalog-filter-label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #64748b; margin-bottom: .75rem;
}
.catalog-filter-group { margin-bottom: .875rem; }
.catalog-filter-group label {
  display: flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 600; color: #334155; margin-bottom: .375rem;
}
.catalog-filter-group label svg { width: 1rem; height: 1rem; color: #94a3b8; flex-shrink: 0; }
.catalog-filter-group select {
  width: 100%; padding: .5rem .625rem; border: 1px solid #e2e8f0;
  border-radius: .5rem; font-size: .8125rem; font-family: inherit;
  background: #fff; color: #475569; cursor: pointer;
}
.catalog-filter-group select:focus { outline: none; border-color: #14b8a6; }
.catalog-filter-reset {
  width: 100%; margin-top: .5rem; padding: .5rem;
  border: 1px dashed #cbd5e1; border-radius: .5rem;
  background: transparent; font-size: .8125rem; font-weight: 600;
  color: #64748b; cursor: pointer; font-family: inherit;
}
.catalog-filter-reset:hover { border-color: #0d9488; color: #0d9488; background: #f0fdfa; }

/* Main */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  background: linear-gradient(90deg, #ecfdf5, #f0fdfa);
  border: 1px solid #ccfbf1; border-radius: .875rem;
  padding: .875rem 1.125rem; margin-bottom: 1.25rem;
}
.catalog-count { font-size: .9375rem; font-weight: 700; color: #0f766e; }
.catalog-live {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 700; color: #059669;
  background: #fff; border: 1px solid #a7f3d0; border-radius: 999px;
  padding: .25rem .75rem;
}
.catalog-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  animation: catalog-pulse 1.5s ease-in-out infinite;
}
@keyframes catalog-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.catalog-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Grid card — PanelPC tarzı */
.catalog-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.catalog-card:hover {
  box-shadow: 0 16px 40px rgba(15,23,42,.1);
  transform: translateY(-2px); border-color: #cbd5e1;
}
.catalog-card__media {
  position: relative; aspect-ratio: 1; background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.catalog-card__media img {
  max-width: 88%; max-height: 88%; object-fit: contain;
  transition: transform .35s ease;
}
.catalog-card:hover .catalog-card__media img { transform: scale(1.04); }
.catalog-card__body { padding: 1rem 1.125rem 1.125rem; flex: 1; display: flex; flex-direction: column; }
.catalog-card__brand {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: #0d9488; margin-bottom: .375rem;
}
.catalog-card__title {
  font-size: .9375rem; font-weight: 800; color: #0f172a;
  line-height: 1.35; margin-bottom: .75rem; word-break: break-word;
}
.catalog-card__specs { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; flex: 1; }
.catalog-card__spec {
  display: flex; align-items: center; gap: .375rem;
  font-size: .75rem; color: #475569;
}
.catalog-card__spec svg { width: .875rem; height: .875rem; color: #94a3b8; flex-shrink: 0; }
.catalog-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: auto; }
.catalog-card__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .25rem;
  padding: .5625rem .5rem; border-radius: .625rem;
  font-size: .75rem; font-weight: 700; text-decoration: none;
  cursor: pointer; font-family: inherit; transition: .2s; border: 1px solid transparent;
}
.catalog-card__btn--compare {
  background: #fff; border-color: #e2e8f0; color: #475569;
}
.catalog-card__btn--compare:hover { border-color: #0d9488; color: #0d9488; background: #f0fdfa; }
.catalog-card__btn--compare.is-active { background: #ecfdf5; border-color: #14b8a6; color: #0f766e; }
.catalog-card__btn--view {
  background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff;
  box-shadow: 0 4px 12px rgba(13,148,136,.25);
}
.catalog-card__btn--view:hover { filter: brightness(1.05); transform: translateY(-1px); }

.catalog-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  color: #64748b; font-size: .9375rem;
}
.catalog-empty--error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; border-radius: 1rem; }

@media (max-width: 1023px) {
  .catalog-sidebar { position: static; }
}

/* Karşılaştırma bar (katalog / detay) */
.oeo-compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  transform: translateY(110%); transition: transform .3s ease;
  pointer-events: none;
}
.oeo-compare-bar.is-visible {
  transform: translateY(0); pointer-events: auto;
}
.oeo-compare-bar__inner {
  max-width: 48rem; margin: 0 auto 1rem; padding: .875rem 1.25rem;
  background: #0f172a; color: #e2e8f0; border-radius: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 20px 50px rgba(15,23,42,.35);
}
.oeo-compare-bar__count { color: #5eead4; }
.oeo-compare-bar__actions { display: flex; gap: .5rem; flex-shrink: 0; }
.oeo-compare-bar__clear {
  padding: .5rem .875rem; border-radius: .5rem; border: 1px solid #475569;
  background: transparent; color: #cbd5e1; font-size: .8125rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.oeo-compare-bar__clear:hover { border-color: #94a3b8; color: #fff; }
.oeo-compare-bar__go {
  padding: .5rem 1rem; border-radius: .5rem;
  background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff;
  font-size: .8125rem; font-weight: 700; text-decoration: none;
}
.oeo-compare-bar__go:hover { filter: brightness(1.08); }

/* Karşılaştırma sayfası */
.compare-page-head { margin-bottom: 1.5rem; }
.compare-page-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #0f172a; margin-bottom: .5rem;
}
.compare-page-desc { font-size: .9375rem; color: #64748b; max-width: 42rem; line-height: 1.6; }
.compare-empty {
  text-align: center; padding: 3rem 1.5rem; background: #fff;
  border: 1px dashed #cbd5e1; border-radius: 1rem;
}
.compare-empty p { font-size: 1rem; color: #475569; margin-bottom: 1.25rem; }
.compare-table-wrap {
  overflow-x: auto; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 1rem; box-shadow: 0 4px 24px rgba(15,23,42,.04);
  margin-bottom: 1.25rem;
}
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 640px;
  font-size: .8125rem;
}
.compare-table thead th {
  vertical-align: top; padding: 1rem; border-bottom: 1px solid #e5e7eb;
  background: #f8fafc; text-align: center;
}
.compare-label-col {
  text-align: left !important; min-width: 11rem; font-weight: 700; color: #64748b;
  position: sticky; left: 0; z-index: 2; background: #f8fafc !important;
}
.compare-col { min-width: 10rem; max-width: 14rem; position: relative; }
.compare-remove {
  position: absolute; top: .5rem; right: .5rem; width: 1.5rem; height: 1.5rem;
  border: none; border-radius: 999px; background: #fee2e2; color: #b91c1c;
  font-size: 1.125rem; line-height: 1; cursor: pointer; font-family: inherit;
}
.compare-remove:hover { background: #fecaca; }
.compare-col__img {
  display: block; aspect-ratio: 1; margin: 0 auto .75rem; max-width: 7rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9); border-radius: .75rem; padding: .5rem;
}
.compare-col__img img { width: 100%; height: 100%; object-fit: contain; }
.compare-col__sku {
  display: block; font-size: .8125rem; font-weight: 800; color: #0f172a;
  text-decoration: none; line-height: 1.35; margin-bottom: .25rem;
}
.compare-col__sku:hover { color: #0d9488; }
.compare-col__brand { font-size: .6875rem; font-weight: 700; color: #0d9488; text-transform: uppercase; }
.compare-table tbody th {
  text-align: left; padding: .625rem 1rem; font-weight: 600; color: #64748b;
  border-bottom: 1px solid #f1f5f9; background: #fafafa;
  position: sticky; left: 0; z-index: 1;
}
.compare-table tbody td {
  padding: .625rem 1rem; border-bottom: 1px solid #f1f5f9;
  text-align: center; color: #334155; vertical-align: middle;
}
.compare-table tbody tr:hover td { background: #f8fafc; }
.compare-footer-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}

/* Ürün detay */
.detail-layout { display: flex; flex-direction: column; gap: 2rem; }
.detail-top {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start;
}
@media (min-width: 1024px) {
  .detail-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.detail-card { max-width: 100%; }
.detail-brand {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #0d9488; margin-bottom: .5rem;
}
.detail-title {
  font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 800; color: #0f172a;
  line-height: 1.25; margin-bottom: .5rem;
}
.detail-subtitle { font-size: .9375rem; color: #64748b; margin-bottom: 1rem; }
.detail-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.detail-chip {
  font-size: .75rem; font-weight: 600; padding: .375rem .75rem;
  border-radius: 999px; background: #f1f5f9; color: #475569;
}
.detail-chip--accent { background: #ecfdf5; color: #0f766e; }
.detail-actions { display: flex; flex-wrap: wrap; gap: .625rem; align-items: center; }
.detail-link-compare {
  font-size: .8125rem; font-weight: 600; color: #0d9488; text-decoration: none;
}
.detail-link-compare:hover { text-decoration: underline; }
.detail-tabs {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; overflow: hidden;
}
.detail-tabs__nav {
  display: flex; flex-wrap: wrap; border-bottom: 1px solid #e5e7eb; background: #f8fafc;
}
.detail-tabs__btn {
  flex: 1; min-width: 8rem; padding: .875rem 1rem; border: none; background: transparent;
  font-size: .8125rem; font-weight: 700; color: #64748b; cursor: pointer; font-family: inherit;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.detail-tabs__btn.is-active { color: #0f766e; border-bottom-color: #14b8a6; background: #fff; }
.detail-tabs__panel { display: none; padding: 1.25rem 1.5rem; }
.detail-tabs__panel.is-active { display: block; }
.detail-spec-table { width: 100%; border-collapse: collapse; }
.detail-spec-table th,
.detail-spec-table td {
  padding: .75rem 0; border-bottom: 1px solid #f1f5f9; text-align: left; vertical-align: top;
}
.detail-spec-table th {
  width: 38%; font-size: .8125rem; font-weight: 600; color: #64748b; padding-right: 1rem;
}
.detail-spec-table td { font-size: .875rem; font-weight: 500; color: #0f172a; }
.detail-list {
  margin: 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .625rem;
}
.detail-list li { font-size: .875rem; color: #334155; line-height: 1.55; }

/* Sayfalama */
.catalog-pagination {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.catalog-page-btn {
  padding: .5rem 1rem; border-radius: .625rem; border: 1px solid #e2e8f0;
  background: #fff; font-size: .8125rem; font-weight: 700; color: #475569;
  cursor: pointer; font-family: inherit;
}
.catalog-page-btn:hover:not(:disabled) { border-color: #0d9488; color: #0f766e; background: #f0fdfa; }
.catalog-page-btn:disabled { opacity: .45; cursor: not-allowed; }
.catalog-page-info { font-size: .8125rem; color: #64748b; }

/* Karşılaştırma — slot + ürün ekleme */
.compare-slots-wrap { margin-bottom: 1.5rem; }
.compare-slots-head { font-size: .875rem; color: #64748b; margin-bottom: .75rem; }
.compare-slots-head strong { color: #0f766e; }
.compare-slots {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
@media (min-width: 768px) { .compare-slots { grid-template-columns: repeat(4, 1fr); } }
.compare-slot {
  position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: .875rem;
  padding: .875rem; text-align: center; min-height: 9rem;
}
.compare-slot--empty {
  border-style: dashed; color: #94a3b8; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .375rem;
}
.compare-slot--empty span {
  width: 2rem; height: 2rem; border-radius: 999px; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.compare-slot--empty p { font-size: .75rem; margin: 0; }
.compare-slot__img { display: block; max-width: 5rem; margin: 0 auto .5rem; aspect-ratio: 1; }
.compare-slot__img img { width: 100%; height: 100%; object-fit: contain; }
.compare-slot__sku { font-size: .6875rem; font-weight: 800; color: #0f172a; text-decoration: none; line-height: 1.35; word-break: break-word; }
.compare-empty--inline { margin-bottom: 1.25rem; padding: 1.25rem; }
.compare-picker { margin-top: 2rem; }
.compare-picker-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem;
}
.compare-picker-title { font-size: 1.125rem; font-weight: 800; color: #0f172a; }
.compare-picker-search { flex: 1; min-width: 14rem; max-width: 24rem; margin-bottom: 0; }
.compare-picker-grid { margin-bottom: .75rem; }
.compare-picker-note { font-size: .75rem; color: #94a3b8; text-align: center; }

/* Modern Premium Category Tree */
.catalog-category-tree {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.catalog-cat-details {
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}
.catalog-cat-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: rgba(15,23,42,0.03);
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.catalog-cat-summary::-webkit-details-marker {
  display: none;
}
.catalog-cat-summary:hover {
  background: rgba(15,23,42,0.06);
}
html.light .catalog-cat-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
html.light .catalog-cat-summary:hover {
  background: #f1f5f9;
}
.cat-group-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  margin-right: 0.5rem;
}
.cat-group-link .cat-name {
  font-size: 0.875rem;
  font-weight: 700;
}
.cat-group-link .cat-count {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  background: rgba(15,23,42,0.05);
  border-radius: 999px;
}
html.light .cat-group-link .cat-name {
  color: #0f172a;
}
html.light .cat-group-link .cat-count {
  background: #e2e8f0;
  color: #475569;
}
.cat-chevron {
  color: #64748b;
  transition: transform 0.3s ease;
}
.catalog-cat-details[open] .cat-chevron {
  transform: rotate(180deg);
}
.catalog-cat-children {
  padding: 0.5rem 0 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 2px solid rgba(15,23,42,0.05);
  margin-left: 1rem;
}
html.light .catalog-cat-children {
  border-left-color: #e2e8f0;
}
.catalog-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
}
.catalog-cat-link:hover {
  color: #0f172a;
  background: rgba(15,23,42,0.03);
  padding-left: 1rem;
}
html.light .catalog-cat-link {
  color: #475569;
}
html.light .catalog-cat-link:hover {
  color: #ea580c;
  background: #fff0eb;
  padding-left: 1rem;
}
.catalog-cat-link.is-active {
  color: #0d9488;
  background: #f0fdfa;
  font-weight: 700;
  border-left: 3px solid #0d9488;
}
html.light .catalog-cat-link.is-active {
  color: #ea580c;
  background: #fff0eb;
  border-left: 3px solid #ea580c;
}
.catalog-cat-link .cat-count {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.7;
}

/* Fix product card overlaps and add premium polish */
.catalog-card__body {
  padding: 1.5rem !important;
}
.catalog-card__title {
  min-height: 2.7rem;
}
.catalog-card__specs {
  gap: 0.5rem !important;
}
.catalog-card__spec {
  font-size: 0.8125rem !important;
}

/* =========================================================
   PREMIUM CATALOG REDESIGN (HERO, TOOLBAR, CARDS)
========================================================= */


/* PREMIUM CATALOG REDESIGN (HERO, TOOLBAR, CARDS) */
.premium-catalog-hero { background: linear-gradient(135deg, #090e17 0%, #111827 100%) !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding: 4rem 2rem !important; text-align: center !important; position: relative !important; overflow: hidden !important; }
.premium-catalog-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px) !important; background-size: 40px 40px !important; pointer-events: none !important; }
.premium-hero-content { position: relative !important; z-index: 10 !important; max-width: 800px !important; margin: 0 auto !important; }
.premium-hero-title { font-size: 2.75rem !important; font-weight: 800 !important; color: #fff !important; letter-spacing: -0.025em !important; margin-bottom: 1rem !important; }
.premium-hero-subtitle { font-size: 1.125rem !important; color: #94a3b8 !important; line-height: 1.6 !important; }

/* Filter Bar */
.premium-filter-bar { display: flex !important; flex-wrap: wrap !important; align-items: center !important; justify-content: space-between !important; gap: 1.5rem !important; padding: 1rem 2rem !important; background: rgba(15,23,42,0.6) !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; position: sticky !important; top: 80px !important; z-index: 40 !important; }
html.light .premium-filter-bar { background: rgba(255,255,255,0.95) !important; border-bottom: 1px solid #e2e8f0 !important; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05) !important; }
.premium-filter-container { display: flex !important; gap: 1.5rem !important; flex-wrap: wrap !important; }
.premium-filter-group { display: flex !important; flex-direction: column !important; gap: 0.25rem !important; }
.premium-filter-group label { font-size: 0.75rem !important; font-weight: 600 !important; color: #94a3b8 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
html.light .premium-filter-group label { color: #64748b !important; }

/* Inputs */
.premium-select { appearance: none !important; background: rgba(255,255,255,0.05) url('data:image/svg+xml;utf8,<svg fill="%2394a3b8" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 8px center !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; padding: 0.5rem 2.5rem 0.5rem 1rem !important; border-radius: 0.5rem !important; font-size: 0.875rem !important; font-family: inherit !important; cursor: pointer !important; min-width: 160px !important; transition: all 0.2s !important; }
.premium-select option { background-color: #1e293b !important; color: #fff !important; }
.premium-select:focus { outline: none !important; border-color: #0ea5e9 !important; box-shadow: 0 0 0 3px rgba(14,165,233,0.2) !important; }
html.light .premium-select { background-color: #f8fafc !important; border-color: #cbd5e1 !important; color: #0f172a !important; background-image: url('data:image/svg+xml;utf8,<svg fill="%23475569" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important; }
html.light .premium-select option { background-color: #fff !important; color: #0f172a !important; }
html.light .premium-select:focus { border-color: #ea580c !important; box-shadow: 0 0 0 3px rgba(234,88,12,0.1) !important; }
.premium-search-box { position: relative !important; display: flex !important; align-items: center !important; }
.premium-search-box svg { position: absolute !important; left: 12px !important; color: #64748b !important; pointer-events: none !important; }
.premium-search-input { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; padding: 0.5rem 1rem 0.5rem 2.5rem !important; border-radius: 2rem !important; font-size: 0.875rem !important; width: 250px !important; transition: all 0.2s !important; }
.premium-search-input:focus { outline: none !important; border-color: #0ea5e9 !important; background: rgba(255,255,255,0.1) !important; width: 300px !important; }
html.light .premium-search-input { background: #f8fafc !important; border-color: #cbd5e1 !important; color: #0f172a !important; }
html.light .premium-search-input:focus { border-color: #ea580c !important; background: #fff !important; }
html.light .premium-search-box svg { color: #94a3b8 !important; }

/* Hide old Sidebar parts */
.catalog-sidebar .catalog-search-wrap, .catalog-sidebar .catalog-filter-group { display: none !important; }

/* Premium Cards */
.catalog-card { background: #111827 !important; border: 1px solid rgba(255,255,255,0.05) !important; border-radius: 12px !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important; }
.catalog-card:hover { transform: translateY(-4px) !important; border-color: rgba(255,255,255,0.2) !important; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3) !important; }
html.light .catalog-card { background: #fff !important; border: 1px solid #e2e8f0 !important; box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important; }
html.light .catalog-card:hover { border-color: #cbd5e1 !important; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01) !important; }
.catalog-card__img-wrap { padding: 1.5rem !important; background: rgba(255,255,255,0.02) !important; border-bottom: 1px solid rgba(255,255,255,0.02) !important; }
html.light .catalog-card__img-wrap { background: #f8fafc !important; border-bottom: 1px solid #f1f5f9 !important; }
.catalog-card__img-wrap img { transform: scale(0.95); transition: transform 0.5s ease; }
.catalog-card:hover .catalog-card__img-wrap img { transform: scale(1.02); }
.catalog-card__body { padding: 1.5rem !important; display: flex !important; flex-direction: column !important; }
.catalog-card__sku { font-size: 0.75rem !important; letter-spacing: 0.05em !important; color: #94a3b8 !important; }
.catalog-card__title { font-size: 1.125rem !important; font-weight: 700 !important; margin-top: 0.5rem !important; line-height: 1.3 !important; }
.catalog-card__specs { margin-top: 1rem !important; padding-top: 1rem !important; border-top: 1px solid rgba(255,255,255,0.05) !important; }
html.light .catalog-card__specs { border-top-color: #f1f5f9 !important; }
.catalog-card__btn { margin-top: 1.5rem !important; background: transparent !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; font-weight: 600 !important; border-radius: 0.5rem !important; padding: 0.6rem !important; transition: all 0.2s !important; text-align: center !important; text-decoration: none !important; }
.catalog-card__btn:hover { background: #fff !important; color: #0f172a !important; }
html.light .catalog-card__btn { border-color: #e2e8f0 !important; color: #0f172a !important; }
html.light .catalog-card__btn:hover { background: #0f172a !important; color: #fff !important; border-color: #0f172a !important; }
