@charset "UTF-8";

/* ../../../../../tmp/tmp-2315265-QQ7QzlgVe7j6/makarimaltamayuzcars/makarimaltamayuzcars/public/scss/cars.bundle.css */
:root {
  --bg: #f6f6f7;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #b91c1c;
  --accent-2:#f59e0b;
  --shadow: 0 8px 25px rgba(0,0,0,.06);
}
.page-content-wrapper .cars-page {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background: transparent;
  padding: 18px 12px 40px;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Tahoma,
    Arial,
    sans-serif;
}
.cars-rtl {
  direction: rtl;
  text-align: right;
}
.cars-header {
  margin: 0 0 14px;
  padding: 0 6px;
}
.cars-title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}
.cars-count {
  color: var(--accent-2);
  font-weight: 800;
}
.cars-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  align-items: start;
}
.cars-main {
  min-width: 0;
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.car-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.car-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 12px 12px 14px;
}
.car-fav {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  z-index: 2;
}
.car-fav:hover {
  transform: scale(1.03);
}
.car-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.car-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #d97706;
  line-height: 1.2;
  text-align: right;
}
.car-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  opacity: 0.9;
  text-align: left;
}
.car-image-wrap {
  height: 190px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 10px;
}
.car-image {
  max-width: 100%;
  max-height: 190px;
  -o-object-fit: contain;
  object-fit: contain;
}
.car-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.car-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
  font-size: 14px;
}
.new-price {
  color: #f59e0b;
  font-weight: 900;
  font-size: 16px;
}
.currency {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid var(--border);
}
.badge-request {
  color: #b45309;
  background: #fff7ed;
  border-color: #fed7aa;
}
.btn-view {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 13px;
}
.cars-sidebar {
  position: sticky;
  top: 18px;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.tab {
  padding: 12px 10px;
  background: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  color: var(--muted);
}
.tab.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
.sidebar-section {
  padding: 12px;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.sidebar-title {
  font-weight: 900;
  color: var(--text);
  text-align: right;
}
.clear-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.clear-btn:hover {
  border-color: #d1d5db;
}
.brands-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
  padding-left: 2px;
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.brand-row:hover {
  border-color: #d1d5db;
}
.brand-name {
  font-weight: 800;
  color: var(--text);
  text-align: right;
}
.brand-check {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.sidebar-footer {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.result-count {
  font-weight: 900;
  color: var(--text);
  text-align: right;
}
.search-wrap {
  display: grid;
}
.search-input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  outline: none;
  text-align: right;
}
.search-input:focus {
  border-color: #d1d5db;
}
.empty-state {
  margin-top: 14px;
  padding: 16px;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}
@media (max-width: 1100px) {
  .cars-layout {
    grid-template-columns: 1fr;
  }
  .cars-sidebar {
    position: static;
    order: -1;
  }
}
@media (max-width: 900px) {
  .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .cars-grid {
    grid-template-columns: 1fr;
  }
  .car-image-wrap {
    height: 170px;
  }
}
/*# sourceMappingURL=cars.bundle.LO6OXCBT.css.map */
