/* [project]/src/features/product-filters/ui/ProductFilters.module.css [app-client] (css) */
.ProductFilters-module__QGPi5W__productFilters {
  border-radius: 8px;
  flex-direction: column;
  flex-shrink: 0;
  gap: 24px;
  width: 320px;
  padding: 20px;
  display: flex;
}

.ProductFilters-module__QGPi5W__categorySelector {
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.ProductFilters-module__QGPi5W__categorySelector img {
  filter: brightness(0) saturate();
  color: #1c1c1c;
  margin-left: -4px;
}

.ProductFilters-module__QGPi5W__categoriesDropdown {
  background: #fff;
  border: 1px solid #ececee;
  border-radius: 8px;
  max-height: 200px;
  margin-top: 12px;
  overflow-y: auto;
}

.ProductFilters-module__QGPi5W__categoryOption {
  width: 100%;
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  transition: background-color .2s;
  display: block;
}

.ProductFilters-module__QGPi5W__categoryOption:hover {
  background: #f6f6f6;
}

.ProductFilters-module__QGPi5W__categoryOption:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.ProductFilters-module__QGPi5W__categoryOption:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.ProductFilters-module__QGPi5W__categoryOptionActive {
  color: #fd6710;
  background: #ffefe6;
  font-weight: 500;
}

.ProductFilters-module__QGPi5W__priceInputs {
  gap: 8px;
  display: flex;
}

.ProductFilters-module__QGPi5W__priceInput {
  width: 136px;
  height: 50px;
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  box-sizing: border-box;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  flex: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
}

.ProductFilters-module__QGPi5W__priceInput::placeholder {
  color: #95959d;
}

.ProductFilters-module__QGPi5W__checkboxList {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.ProductFilters-module__QGPi5W__checkboxListCollapsed {
  max-height: none;
  overflow: visible;
}

.ProductFilters-module__QGPi5W__checkboxListExpanded {
  scrollbar-gutter: stable;
  max-height: 350px;
  padding-right: 14px;
  overflow-y: auto;
}

.ProductFilters-module__QGPi5W__checkboxListExpanded::-webkit-scrollbar {
  width: 6px;
}

.ProductFilters-module__QGPi5W__checkboxListExpanded::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 3px;
}

.ProductFilters-module__QGPi5W__checkboxListExpanded::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}

.ProductFilters-module__QGPi5W__checkboxListExpanded::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

.ProductFilters-module__QGPi5W__showAllButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fd6710;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: none;
  align-self: flex-start;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.ProductFilters-module__QGPi5W__applyButton {
  z-index: 10;
  position: sticky;
  bottom: 20px;
  width: 280px !important;
  height: 40px !important;
}

.ProductFilters-module__QGPi5W__catalogVehiclePickerContainer {
  margin-top: 8px;
}

.ProductFilters-module__QGPi5W__loadingState {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  font-size: 14px;
  display: flex;
}

.ProductFilters-module__QGPi5W__noResults {
  text-align: center;
  color: #666;
  padding: 12px 16px;
  font-size: 14px;
  font-style: italic;
}

.ProductFilters-module__QGPi5W__skeletonBlock {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%) 0 0 / 400% 100%;
  border-radius: 10px;
  height: 48px;
  animation: 1.2s ease-in-out infinite ProductFilters-module__QGPi5W__shimmer;
}

.ProductFilters-module__QGPi5W__skeletonTall {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%) 0 0 / 400% 100%;
  border-radius: 10px;
  height: 160px;
  animation: 1.2s ease-in-out infinite ProductFilters-module__QGPi5W__shimmer;
}

@keyframes ProductFilters-module__QGPi5W__shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}


/* [project]/src/views/SearchResultsView/ui/SearchResultsView.module.css [app-client] (css) */
.SearchResultsView-module__xvTX2W__searchResultsView {
  box-sizing: border-box;
  background: #fff;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__breadcrumbs {
  height: 18px;
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.SearchResultsView-module__xvTX2W__breadcrumbs span {
  padding: 10px;
}

.SearchResultsView-module__xvTX2W__breadcrumbsActive {
  color: #222324 !important;
}

.SearchResultsView-module__xvTX2W__autoBanner {
  background: #f6f6f6;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__autoInfo {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__autoCheck {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__autoModel {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  font-size: 18px;
  font-weight: 500;
}

.SearchResultsView-module__xvTX2W__autoActions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__selectionButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background: #fd6710;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__selectionButton:hover {
  background: #e55a0e;
}

.SearchResultsView-module__xvTX2W__garageButton {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #fd6710;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__garageButton:hover {
  color: #fff;
  background: #fd6710;
}

.SearchResultsView-module__xvTX2W__settingsButton {
  cursor: pointer;
  background: #fff;
  border: 1px solid #d0d0d5;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: border-color .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__settingsButton:hover {
  border-color: #fd6710;
}

.SearchResultsView-module__xvTX2W__mainContent {
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  display: flex;
}

.SearchResultsView-module__xvTX2W__filtersColumn {
  flex-shrink: 0;
  width: 320px;
}

.SearchResultsView-module__xvTX2W__vehiclePickerUnderFilters {
  margin-top: 16px;
}

.SearchResultsView-module__xvTX2W__resultsColumn {
  flex: 1;
}

.SearchResultsView-module__xvTX2W__filters {
  border-radius: 8px;
  flex-direction: column;
  flex-shrink: 0;
  gap: 24px;
  width: 320px;
  padding: 20px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__categorySelector {
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__categorySelector img {
  filter: brightness(0) saturate();
  color: #1c1c1c;
  margin-left: -4px;
}

.SearchResultsView-module__xvTX2W__priceInputs {
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__priceInput {
  width: 136px;
  height: 50px;
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  box-sizing: border-box;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  flex: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
}

.SearchResultsView-module__xvTX2W__priceInput::placeholder {
  color: #95959d;
}

.SearchResultsView-module__xvTX2W__checkboxList {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__showAllButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fd6710;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: none;
  align-self: flex-start;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.SearchResultsView-module__xvTX2W__resetButton {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #fd6710;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__resetButton img {
  filter: brightness(0) saturate();
  color: #222324;
}

.SearchResultsView-module__xvTX2W__resetButton:hover {
  color: #fff;
  background: #fd6710;
}

.SearchResultsView-module__xvTX2W__resetButton:hover img {
  filter: brightness(0) saturate() invert();
}

.SearchResultsView-module__xvTX2W__content {
  flex-direction: column;
  flex: 1;
  gap: 28px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__contentHeader {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__headerTop {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.SearchResultsView-module__xvTX2W__contentTitle {
  color: #1c1c1c;
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

.SearchResultsView-module__xvTX2W__sortSection {
  align-items: center;
  gap: 16px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__sortLabel {
  font-family: var(--font-roboto), sans-serif;
  color: #7b7b84;
  font-size: 16px;
  font-weight: 400;
}

.SearchResultsView-module__xvTX2W__sortSelector {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  background: #f6f6f6;
  border: 1px solid #cacace;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__activeTags {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__tag {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  background: #f6f6f6;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__tag button {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
}

.SearchResultsView-module__xvTX2W__resetTagsButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fd6710;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d0d0d5;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.SearchResultsView-module__xvTX2W__resultsSection {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__resultsHeader {
  align-items: center;
  display: flex;
}

.SearchResultsView-module__xvTX2W__resultsCount {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 400;
}

.SearchResultsView-module__xvTX2W__productsContainer {
  grid-template-columns: 1fr;
  align-self: stretch;
  gap: 20px;
  display: grid;
}

.SearchResultsView-module__xvTX2W__productCard {
  background: #fff;
  border-bottom: 1px solid #e5e5e6;
  grid-template-columns: 200px 440px auto;
  align-items: start;
  gap: 20px;
  padding: 20px 0;
  display: grid;
}

.SearchResultsView-module__xvTX2W__productImage {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.SearchResultsView-module__xvTX2W__productImage img {
  object-fit: cover;
  width: 131px;
  height: 169px;
}

.SearchResultsView-module__xvTX2W__favoriteButton {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 2px 8px #0000001a;
}

.SearchResultsView-module__xvTX2W__favoriteButton:hover {
  transform: scale(1.05);
}

.SearchResultsView-module__xvTX2W__productContent {
  flex-direction: column;
  gap: 30px;
  width: 440px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productHeader {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productBottom {
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productSpecs {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productRight {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__lineSeparator {
  border-left: 1px solid #e5e5e6;
  width: 0;
  height: 12px;
}

.SearchResultsView-module__xvTX2W__priceSection {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__priceInfo {
  align-items: flex-start;
  gap: -10px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__currentPrice {
  align-items: flex-end;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productTitle {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  max-width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchResultsView-module__xvTX2W__productInfoRow {
  align-items: center;
  gap: 8px;
  height: 17px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productLeft {
  align-items: center;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__productArticle {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchResultsView-module__xvTX2W__productRating {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__reviewsCount {
  color: #222324;
  white-space: nowrap;
}

.SearchResultsView-module__xvTX2W__specRow {
  gap: 16px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__specLabel {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  flex-shrink: 0;
  width: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchResultsView-module__xvTX2W__specValue {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchResultsView-module__xvTX2W__stockInfo {
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__price {
  color: #222324;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.SearchResultsView-module__xvTX2W__priceUnit {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  width: 41px;
  height: 17px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchResultsView-module__xvTX2W__oldPrice {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: line-through;
  position: relative;
  top: 0;
}

.SearchResultsView-module__xvTX2W__inStock {
  font-family: var(--font-roboto), sans-serif;
  color: #29c175;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.SearchResultsView-module__xvTX2W__quantity {
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchResultsView-module__xvTX2W__productActions {
  gap: 8px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__addToCartButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  background: #fd6710;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 180px;
  height: 50px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__addToCartButton:hover {
  background: #e55a0e;
}

.SearchResultsView-module__xvTX2W__favoriteButtonSmall {
  cursor: pointer;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: background-color .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__favoriteButtonSmall:hover {
  background: #e5e5e6;
}

.SearchResultsView-module__xvTX2W__pagination {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__paginationControls {
  align-items: center;
  gap: 16px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__paginationArrow {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: opacity .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__paginationArrow:hover {
  opacity: .7;
}

.SearchResultsView-module__xvTX2W__paginationPages {
  align-items: center;
  gap: 4px;
  display: flex;
}

.SearchResultsView-module__xvTX2W__pageButton {
  width: 28px;
  height: 28px;
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.SearchResultsView-module__xvTX2W__pageButton:hover {
  background: #f6f6f6;
}

.SearchResultsView-module__xvTX2W__pageActive {
  color: #fff !important;
  background: #fd6710 !important;
}

.SearchResultsView-module__xvTX2W__itemsPerPage {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsView-module__xvTX2W__itemsSelector {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 84px;
  height: 40px;
  padding: 0 16px;
  display: flex;
}


/* [project]/src/features/catalog-vehicle-picker/ui/CatalogVehiclePicker/CatalogVehiclePicker.module.css [app-client] (css) */
.CatalogVehiclePicker-module__m5cAoG__wrapper {
  width: 100%;
}

.CatalogVehiclePicker-module__m5cAoG__inner {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 20px;
}

.CatalogVehiclePicker-module__m5cAoG__headerRow {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.CatalogVehiclePicker-module__m5cAoG__title {
  color: #1c1c1c;
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.CatalogVehiclePicker-module__m5cAoG__searchBox {
  width: 100%;
  margin-bottom: 16px;
}

.CatalogVehiclePicker-module__m5cAoG__inputWhite {
  display: block;
  background: #fff !important;
  border-radius: 10px !important;
  width: 100% !important;
}

.CatalogVehiclePicker-module__m5cAoG__inputWhite input {
  width: 100% !important;
}

.CatalogVehiclePicker-module__m5cAoG__inputWhite img {
  display: none !important;
}

.CatalogVehiclePicker-module__m5cAoG__subtitle {
  color: #1c1c1c;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

.CatalogVehiclePicker-module__m5cAoG__brandsBlock {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 0 20px 16px 0;
}

.CatalogVehiclePicker-module__m5cAoG__brandsBlockInner {
  width: 100%;
}

.CatalogVehiclePicker-module__m5cAoG__list {
  flex-direction: column;
  row-gap: 0;
  max-height: 280px;
  padding: 0 8px;
  display: flex;
  overflow-y: auto;
}

.CatalogVehiclePicker-module__m5cAoG__list::-webkit-scrollbar {
  width: 4px;
}

.CatalogVehiclePicker-module__m5cAoG__list::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 2px;
}

.CatalogVehiclePicker-module__m5cAoG__list::-webkit-scrollbar-thumb {
  background: silver;
  border-radius: 2px;
}

.CatalogVehiclePicker-module__m5cAoG__list::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.CatalogVehiclePicker-module__m5cAoG__listItem {
  text-align: left;
  cursor: pointer;
  color: #1c1c1c;
  font-family: var(--font-roboto), sans-serif;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  transition: color .2s;
}

.CatalogVehiclePicker-module__m5cAoG__listItem:hover {
  color: #fd6710;
}

.CatalogVehiclePicker-module__m5cAoG__toggleButton {
  cursor: pointer;
  color: #fd6710;
  text-underline-offset: 2px;
  text-transform: uppercase;
  background: none;
  border: none;
  margin-top: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.CatalogVehiclePicker-module__m5cAoG__stepHeader {
  margin-bottom: 16px;
}

.CatalogVehiclePicker-module__m5cAoG__stepLabel {
  color: #1c1c1c;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.CatalogVehiclePicker-module__m5cAoG__backRow {
  cursor: pointer;
  color: #1c1c1c;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.CatalogVehiclePicker-module__m5cAoG__backRow:hover {
  color: #fd6710;
}

.CatalogVehiclePicker-module__m5cAoG__chevronIcon {
  width: 18px;
  height: 18px;
}

.CatalogVehiclePicker-module__m5cAoG__listItemIndented {
  padding-left: 24px;
}

.CatalogVehiclePicker-module__m5cAoG__loading {
  text-align: center;
  color: #666;
  padding: 20px;
  font-size: 14px;
}

.CatalogVehiclePicker-module__m5cAoG__groupTitle {
  color: #666;
  text-transform: uppercase;
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.CatalogVehiclePicker-module__m5cAoG__groupTitle:first-child {
  margin-top: 0;
}

.CatalogVehiclePicker-module__m5cAoG__completed {
  text-align: center;
  color: #1c1c1c;
  padding: 20px;
}

.CatalogVehiclePicker-module__m5cAoG__completed p {
  margin: 8px 0;
  font-size: 14px;
}

.CatalogVehiclePicker-module__m5cAoG__completed strong {
  color: #fd6710;
  font-weight: 600;
}

.CatalogVehiclePicker-module__m5cAoG__selectedItem {
  color: #fd6710;
  background: #ffe5d6;
  border-radius: 8px;
}


/* [project]/src/widgets/SearchResultsWidget/ui/SearchResultsWidget.module.css [app-client] (css) */
.SearchResultsWidget-module__PjaUCq__searchResultsWidget {
  flex-direction: column;
  flex: 1;
  gap: 28px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__contentHeader {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__headerTop {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__contentTitle {
  color: #1c1c1c;
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

.SearchResultsWidget-module__PjaUCq__headerControls {
  align-items: center;
  gap: 28px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__viewControls {
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortSection {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortLeft {
  align-items: center;
  gap: 16px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortRight {
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortLabel {
  font-family: var(--font-roboto), sans-serif;
  color: #7b7b84;
  font-size: 16px;
  font-weight: 400;
}

.SearchResultsWidget-module__PjaUCq__sortSelectorContainer {
  display: inline-block;
  position: relative;
}

.SearchResultsWidget-module__PjaUCq__sortSelector {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  background: #f6f6f6;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortSelector:hover {
  background: #eee;
  border-color: #b8b8b8;
}

.SearchResultsWidget-module__PjaUCq__sortDropdown {
  z-index: 1000;
  background: #fff;
  border: 1px solid #cacace;
  border-radius: 10px;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.SearchResultsWidget-module__PjaUCq__sortOption {
  width: 100%;
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  transition: background-color .2s;
  display: block;
}

.SearchResultsWidget-module__PjaUCq__sortOption:hover {
  background: #f6f6f6;
}

.SearchResultsWidget-module__PjaUCq__sortOptionActive {
  color: #fff;
  background: #fd6710;
}

.SearchResultsWidget-module__PjaUCq__sortOptionActive:hover {
  background: #e55a0e;
}

.SearchResultsWidget-module__PjaUCq__activeTags {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__tag {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  background: #f6f6f6;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__tag button {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__resetButton {
  font-family: var(--font-roboto), sans-serif;
  color: #fd6710;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  transition: opacity .2s;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__resetButton:hover {
  opacity: .8;
}

.SearchResultsWidget-module__PjaUCq__resetButton img {
  width: 24px;
  height: 24px;
}

.SearchResultsWidget-module__PjaUCq__resultsSection {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__resultsHeader {
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__resultsCount {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 400;
}

.SearchResultsWidget-module__PjaUCq__productsContainer {
  align-self: stretch;
}

.SearchResultsWidget-module__PjaUCq__productsContainerOne {
  grid-template-columns: 1fr;
  gap: 20px;
  display: grid;
}

.SearchResultsWidget-module__PjaUCq__productsContainerTwo, .SearchResultsWidget-module__PjaUCq__productsContainerThree {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.SearchResultsWidget-module__PjaUCq__searchProductCardCompact {
  background: #fff;
  border: 1px solid #e5e5e6;
  border-radius: 10px;
  padding: 16px;
}

.SearchResultsWidget-module__PjaUCq__paginationContainer {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__paginationLeft {
  flex: 1;
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__paginationRight {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__paginationControls {
  align-items: center;
  gap: 16px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__paginationArrow {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: opacity .2s;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__paginationArrow:hover {
  opacity: .7;
}

.SearchResultsWidget-module__PjaUCq__paginationPages {
  align-items: center;
  gap: 4px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__pageButton {
  width: 28px;
  height: 28px;
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__pageButton:hover {
  background: #f6f6f6;
}

.SearchResultsWidget-module__PjaUCq__pageActive {
  color: #fff !important;
  background: #fd6710 !important;
}

.SearchResultsWidget-module__PjaUCq__loadMoreSection {
  justify-content: center;
  padding: 20px 0;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__loadMoreButton {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.SearchResultsWidget-module__PjaUCq__itemsPerPage {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__itemsSelector {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 84px;
  height: 40px;
  padding: 0 16px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__container {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__header {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__titleSection {
  align-items: center;
  gap: 4px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__title {
  color: #1c1c1c;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

.SearchResultsWidget-module__PjaUCq__filters {
  align-items: center;
  gap: 8px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__controls {
  align-items: center;
  gap: 40px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortingSection {
  align-items: center;
  gap: 12px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__sortingLabel {
  color: #7b7b84;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchResultsWidget-module__PjaUCq__sortingSelect {
  color: #222324;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  width: 200px;
  height: 40px;
  padding: 0 16px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchResultsWidget-module__PjaUCq__viewToggleSection {
  align-items: center;
  gap: 16px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__resultsCount {
  color: #95959d;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchResultsWidget-module__PjaUCq__productsGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.SearchResultsWidget-module__PjaUCq__productsGridTwo {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

.SearchResultsWidget-module__PjaUCq__emptyState {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  display: flex;
}

.SearchResultsWidget-module__PjaUCq__emptyImage {
  object-fit: cover;
  width: 200px;
  height: 200px;
}

.SearchResultsWidget-module__PjaUCq__emptyTitle {
  color: #222324;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.SearchResultsWidget-module__PjaUCq__emptyDescription {
  color: #7b7b84;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchResultsWidget-module__PjaUCq__productsTable {
  width: 100%;
  max-width: 980px;
}

.SearchResultsWidget-module__PjaUCq__searchResultsGrid {
  gap: 20px;
  display: grid;
}

.SearchResultsWidget-module__PjaUCq__searchResultsGridOne {
  grid-template-columns: 1fr;
}

.SearchResultsWidget-module__PjaUCq__searchResultsGridTwo {
  grid-template-columns: repeat(3, 1fr);
}

.SearchResultsWidget-module__PjaUCq__emptyRequestButton {
  width: 283px !important;
}

.SearchResultsWidget-module__PjaUCq__sortSelect, .SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__selectContainer {
  width: 200px;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__select {
  height: 40px;
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__select:hover {
  background: #eee;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__dropdown {
  background: #fff;
  border: 1px solid #cacace;
  border-radius: 10px;
  margin-top: 4px;
  overflow: hidden;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__option {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  transition: background-color .2s;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__option:hover {
  background: #f6f6f6;
}

.SearchResultsWidget-module__PjaUCq__sortSelect .SearchResultsWidget-module__PjaUCq__option.SearchResultsWidget-module__PjaUCq__selected {
  color: #1976d2;
  background: #e3f2fd;
}

.SearchResultsWidget-module__PjaUCq__skeletonCard {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%) 0 0 / 400% 100%;
  border-radius: 10px;
  height: 260px;
  animation: 1.2s ease-in-out infinite SearchResultsWidget-module__PjaUCq__shimmer;
}

.SearchResultsWidget-module__PjaUCq__skeletonRow {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%) 0 0 / 400% 100%;
  border-radius: 8px;
  height: 56px;
  animation: 1.2s ease-in-out infinite SearchResultsWidget-module__PjaUCq__shimmer;
}

.SearchResultsWidget-module__PjaUCq__skeletonFilters {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

@keyframes SearchResultsWidget-module__PjaUCq__shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}


/* [project]/src/features/search-product-card/ui/SearchProductCard/SearchProductCard.module.css [app-client] (css) */
.SearchProductCard-module__rp6AzW__searchProductCard {
  background: #fff;
  border-bottom: 1px solid #e5e5e6;
  grid-template-columns: 200px 440px auto;
  align-items: start;
  gap: 20px;
  padding: 20px 0;
  display: grid;
}

.SearchProductCard-module__rp6AzW__productImage {
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.SearchProductCard-module__rp6AzW__productImage img {
  object-fit: contain;
  width: 169px;
  height: 169px;
}

.SearchProductCard-module__rp6AzW__productContent {
  flex-direction: column;
  gap: 30px;
  width: 440px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__productTitle {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  width: 349px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  transition: color .2s;
}

.SearchProductCard-module__rp6AzW__productTitle:hover {
  color: #fd6710;
}

.SearchProductCard-module__rp6AzW__productInfoRow {
  align-items: center;
  gap: 8px;
  height: 17px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__productArticle {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchProductCard-module__rp6AzW__lineSeparator {
  border-left: 1px solid #e5e5e6;
  width: 0;
  height: 12px;
}

.SearchProductCard-module__rp6AzW__productRating {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.SearchProductCard-module__rp6AzW__ratingGroup {
  align-items: center;
  gap: 4px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__reviewsCount {
  color: #222324;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
}

.SearchProductCard-module__rp6AzW__productDescription {
  font-family: var(--font-roboto), sans-serif;
  color: #666;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.SearchProductCard-module__rp6AzW__productSpecs {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__specRow {
  gap: 16px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__specLabel {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  flex-shrink: 0;
  width: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.SearchProductCard-module__rp6AzW__specValue {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.SearchProductCard-module__rp6AzW__productRight {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact {
  background: #fff;
  border: 1px solid #e5e5e6;
  border-radius: 10px;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact .SearchProductCard-module__rp6AzW__productImage {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact .SearchProductCard-module__rp6AzW__productContent {
  gap: 16px;
  width: 100%;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact .SearchProductCard-module__rp6AzW__productTitle {
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact .SearchProductCard-module__rp6AzW__productSpecs {
  display: none;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__searchProductCardCompact .SearchProductCard-module__rp6AzW__productRight {
  gap: 20px;
  width: 100%;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard {
  background: #fff;
  border: 1px solid #e5e5e6;
  border-radius: 10px;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productImage {
  flex-shrink: 0;
  width: 100%;
  height: 200px;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productImage img {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productContent {
  flex: 1;
  gap: 8px;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productTitle {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.5em;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productSpecs {
  display: none;
}

.SearchProductCard-module__rp6AzW__searchProductCard.SearchProductCard-module__rp6AzW__compactCard .SearchProductCard-module__rp6AzW__productRight {
  flex-shrink: 0;
}


/* [project]/src/features/product-actions/ui/ProductActions/ProductActions.module.css [app-client] (css) */
.ProductActions-module__zXxjeW__productActions {
  width: 100%;
  font-family: var(--font-roboto), sans-serif;
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.ProductActions-module__zXxjeW__priceSection {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.ProductActions-module__zXxjeW__priceInfo {
  flex-direction: column;
  gap: -10px;
  display: flex;
}

.ProductActions-module__zXxjeW__currentPrice {
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: relative;
}

.ProductActions-module__zXxjeW__price {
  font-family: var(--font-oswald), sans-serif;
  color: #222324;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.ProductActions-module__zXxjeW__priceUnit {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  width: 41px;
  height: 17px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.ProductActions-module__zXxjeW__oldPrice {
  font-family: var(--font-roboto), sans-serif;
  color: #95959d;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: line-through;
  position: absolute;
  top: -16px;
  left: 28px;
}

.ProductActions-module__zXxjeW__stockInfo {
  background: #fff;
  border-radius: 4px;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  display: flex;
}

.ProductActions-module__zXxjeW__inStock {
  font-family: var(--font-roboto), sans-serif;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.ProductActions-module__zXxjeW__inStock img {
  width: 14px;
  height: 14px;
}

.ProductActions-module__zXxjeW__stockText {
  color: #2aab6b;
  font-family: var(--font-roboto), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.ProductActions-module__zXxjeW__stockText .ProductActions-module__zXxjeW__stockQuantity {
  color: #222324;
}

.ProductActions-module__zXxjeW__deliveryInfo {
  color: #222324;
  font-family: var(--font-roboto), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.ProductActions-module__zXxjeW__quantity {
  font-family: var(--font-roboto), sans-serif;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.ProductActions-module__zXxjeW__actionButtons {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.ProductActions-module__zXxjeW__addToCartButton {
  flex: 1;
  padding: 15px 16px;
}

.ProductActions-module__zXxjeW__addToCartButtonDefault, .ProductActions-module__zXxjeW__addToCartButtonSearch {
  width: 180px !important;
}

.ProductActions-module__zXxjeW__favoriteButton {
  cursor: pointer;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .2s;
  display: flex;
}

.ProductActions-module__zXxjeW__favoriteButton:hover {
  background: #e5e5e6;
}

.ProductActions-module__zXxjeW__favoriteActive {
  background: #fff5f0;
}

.ProductActions-module__zXxjeW__favoriteActive:hover {
  background: #ffe8d6;
}

.ProductActions-module__zXxjeW__favoriteButton svg {
  width: 24px;
  height: 24px;
}

.ProductActions-module__zXxjeW__additionalInfo {
  flex-direction: row;
  gap: 40px;
  display: flex;
}

.ProductActions-module__zXxjeW__infoItem {
  font-family: var(--font-roboto), sans-serif;
  color: #222324;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: color .2s;
  display: flex;
}

.ProductActions-module__zXxjeW__infoItem:hover {
  color: #fd6710;
}

.ProductActions-module__zXxjeW__infoItem img {
  width: 24px;
  height: 24px;
  transition: filter .2s;
}

.ProductActions-module__zXxjeW__infoItem:hover img {
  filter: brightness(0) saturate() invert(41%) sepia() saturate(2194%) hue-rotate(8deg) brightness() contrast(93%);
}

@media (width <= 1200px) {
  .ProductActions-module__zXxjeW__productActions {
    width: 100%;
  }

  .ProductActions-module__zXxjeW__additionalInfo {
    justify-content: space-between;
  }
}

@media (width <= 768px) {
  .ProductActions-module__zXxjeW__price {
    font-size: 32px;
  }

  .ProductActions-module__zXxjeW__additionalInfo {
    flex-direction: column;
    gap: 16px;
  }
}


/*# sourceMappingURL=src_10592e36._.css.map*/