/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textarea without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/**
DESIGN
 */
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: var(--color-surface);
    font-size:14px;
    color: var(--color-text)
}
.img-bordered{
    border-radius: 20px;
}
/**
ROOT
 */
:root{
    --color-transparent: transparent;
    --color-white: #fff;
    --color-black: #000;
    --color-text: #1d1d1f;
    --color-text-dark: #162137;
    --color-text-muted: #6e6e73;
    --color-text-secondary: #515155;
    --color-primary: #0071e3;
    --color-danger: #e3004f;
    --color-surface: #fff;
    --color-surface-muted: #f5f5f7;
    --color-surface-control: #eee;
    --color-surface-banner: #e6e6e8;
    --color-icon-muted: #4d4d4d;
    --color-border-soft: #f5f5f7;
    --color-border-input: rgba(0, 0, 0, 0.16);
    --color-border-input-hover: rgba(0, 0, 0, 0.3);
    --color-shadow-soft: rgba(0, 0, 0, .1);
}
/**
Typography
 */
h1{
    font-size:32px;
    line-height: 42px;
}
h2{
    font-size:28px;
    line-height: 38px;
}
h3{
    font-size:24px;
    line-height: 34px;
}
h4{
    font-size:20px;
    line-height: 30px;
}
h5{
    font-size:16px;
    line-height: 26px;
}
h6{
    font-size:14px;
    line-height: 24px;
}

p{
    font-size:14px;
    line-height: 24px;
}
label{
    font-weight:600;
    font-size:14px;
    line-height: 24px;
}


.text-right{
    text-align: right;
}
.inline-block{
    display: inline-block;
}
.flex{
    display: flex;
}
.align-items-center{
    align-items: center;
}
.align-items-end{
    align-items: end;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-end{
    justify-content: end;
}

/**
margins
 */
.mt-40{
    margin-top:40px;
}
.mb-40{
    margin-bottom:40px;
}
.mt-20{
    margin-top:20px;
}
.mb-20{
    margin-bottom:20px;
}
.mt-10{
    margin-top:10px;
}
.mb-10{
    margin-bottom:10px;
}

/** GRID **/
.container{
    max-width:1200px;
    margin: 0 auto;
    padding:0 10px;
}

.bp-toast-container{
    position:fixed;
    top:20px;
    right:20px;
    z-index:9999;
    display:grid;
    gap:10px;
    width:min(360px, calc(100vw - 32px));
    pointer-events:none;
}
.bp-toast{
    padding:14px 16px;
    border-radius:6px;
    border:1px solid transparent;
    background:#fff;
    color:var(--color-text);
    box-shadow:0 10px 30px rgba(0, 0, 0, .16);
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease;
    pointer-events:auto;
}
.bp-toast-show{
    opacity:1;
    transform:translateY(0);
}
.bp-toast-success{
    border-color:#9dd8b5;
    background:#f0fff6;
    color:#075f30;
}
.bp-toast-error{
    border-color:#f0a8bd;
    background:#fff2f6;
    color:#9b0033;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin:0 -10px;
}
.grid{
  padding:0 10px;
}
.col-2{
  width: calc((100% / 12) * 2)
}
.col-3{
  width: calc((100% / 12) * 3)
}
.col-4{
  width: calc((100% / 12) * 4)
}
.col-6{
  width: calc((100% / 12) * 6)
}
.col-7{
    width: calc((100% / 12) * 7)
}
.col-8{
  width: calc((100% / 12) * 8)
}
.col-9{
  width: calc((100% / 12) * 9)
}
.col-12{
    width: 100%
}

/**
Hacks responsive
 */
.visible-desktop{
    display: block !important;
}
.visible-md{
    display: none !important;
}
.visible-sm{
    display: none !important;
}
.hidden-desktop{
    display: none !important;
}


/**
DIALOG
 */
.dialog-default{
    width:100%;
    max-width: 760px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.dialog-default::backdrop{
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px); /* размытие фона — по желанию */
}

/**
Forms
 */
label{
    display: inline-block;
    margin-bottom: 5px;
    cursor: pointer;
}
label.for-check{
    font-weight: 400 !important;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
}
.input-default{
    display: block;
    width:100%;
    box-sizing: border-box;
    min-height: 40px;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--color-border-input);
    transition: all ease-in .2s;
}
.input-default:focus,
.input-default:hover{
    border-color: var(--color-border-input-hover);
    outline: none;
}
.input-default:focus{
    box-shadow: 1px 1px 2px rgba(0,0,0,.16) inset;
}

/**
BUTTONS
 */
.btn{
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--color-border-input);
    background: var(--color-border-input);
    padding: 5px 20px;
    cursor: pointer;
    text-decoration: none;
}
.btn.btn-default{
    background: var(--color-primary);
    border:1px solid var(--color-primary);
    color: #fff;
    font-weight: 400;
}
.btn.btn-danger{
    background: var(--color-danger);
    border: 1px solid var(--color-danger);
    color: #fff;
    font-weight: 400;
}
.btn.btn-default.bordered{
    background: transparent;
    border:1px solid var(--color-primary);
    color: var(--color-primary);
}
.btn.btn-danger.bordered{
    background: transparent;
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
}
.btn span:first-child{
    margin-right: 5px;
    line-height: 0;
}
.btn span.cart{
    position:relative;
}

.action-btn{
    width:40px;
    height:40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background:var(--color-surface-muted);
    border: 1px solid var(--color-surface-muted);
    outline:none;
    cursor: pointer;
    transition: all ease-in .2s;
    opacity: 1;
}
.action-btn svg{
    width:25px;
    height:25px;
}
.action-btn:hover{
    opacity: .5;
}
.action-btn:focus{
    opacity: 1;
}

.action-btn.bordered{
    border: 1px solid var(--color-primary);
    color:var(--color-primary);
}
.action-btn.bordered.danger{
    border: 1px solid var(--color-danger);
    color:var(--color-danger);
}

/** LAYOUT **/
.pre-head{
    background: var(--color-surface);
    padding:15px 0 15px 0;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text-muted);
    font-size:13px;
}
.pre-head a{
    color: var(--color-text-muted);
    margin-right: 10px;
    text-decoration: none;
}
.pre-head a:last-child{
    margin: 0;
}
header{
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border-soft);
    padding:15px 0;
}
header .header-flex{
    display: flex;
    align-items: center;
}
header .header-flex a{
    text-decoration: none;
}
header .header-flex .logo a{
    font-size:20px;
    font-weight:800;
    color: var(--color-text-dark);
}
header .header-flex nav ul{
    padding:0;
    margin:0;
    display: flex;
    align-items: center;
    justify-content: end;
}
header .header-flex nav ul li{
    display: inline-block;
    margin-left: 10px;
}
header .header-flex nav ul li:first-child{
    margin-right: 15px;
}
header .header-flex nav ul li:last-child{
    margin-right: 0;
    margin-left:15px;
}
header .header-flex nav ul li a{
    font-size: 16px;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    color: var(--color-text-dark);
}
header .header-flex nav ul li a.iconed{
    position:relative;
}
header .header-flex nav ul li a.iconed svg{
    width:22px;
    height:22px;
}
header .header-flex nav ul li .circuled-cart{
    position: absolute;
    z-index: 1;
    top:-7px;
    right:-7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width:18px;
    height:18px;
    border-radius: 100%;
    background: var(--color-primary);
}
header .header-flex nav ul li .circuled-cart span{
    font-size: 12px;
    color: var(--color-white);
    position:relative;
}

header .header-flex .search-wrap{
    position: relative;
}

header .header-flex .search-wrap .search-input{
    display: block;
    box-sizing: border-box;
    width:100%;
    border:1px solid var(--color-border-input);
    min-height: 50px;
    padding: 5px 25px;
    border-radius: 25px;
    margin: 0;
    font-size: 16px;
}
header .header-flex .search-wrap .search-input:focus{
    outline: none;
}
header .header-flex .search-wrap .search-btn{
    min-height: 45px;
    border-radius: 23px;
    border:1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-block;
    box-sizing: border-box;
    padding: 5px 15px;
    font-size: 16px;
    font-weight:400;
    position: absolute;
    right:12px;
    top:50%;
    transform: translateY(-50%);
    cursor: pointer;
}

footer{
    background: var(--color-surface-muted);
    padding: 20px 0;
}

footer .logo{
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-dark);
    display: block;
    margin-bottom:20px;
}
footer .logo img{
    max-width:180px;
}
footer .address span{
    display: block;
    color: var(--color-text-muted);
    margin-bottom:5px;
}
footer .info{
    font-weight:600;
    font-size:16px;
    margin-bottom: 20px;
    display: block;
}
footer .footer-nav-menu ul{
    margin:0;
    padding: 0;
}
footer .footer-nav-menu ul li{
    display: block;
    margin-top:5px;
}
footer .footer-nav-menu ul li a{
    font-size:13px;
    text-decoration: none;
    opacity: .85;
    transition: all ease .2s;
}
footer .footer-nav-menu ul li a:hover{
    opacity: 1;
}

.content-info{
    padding: 40px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text-secondary);
    font-size: 12px;
}


/* breadcrumbs */
.breadcrumbs{
    margin: 20px 0;
}
.breadcrumbs-wrapper{
    display: flex;
    align-items: center;
}
.breadcrumbs-wrapper span{
    display: inline-block;
    margin-right:10px;
}
.breadcrumbs-wrapper span.next{
    position:relative;
    bottom:-2px;
}
.breadcrumbs-wrapper span.active-page{
    font-weight:500;
    color: var(--color-text-muted);
}
.breadcrumbs-wrapper span a{
    text-decoration: none;
}
.breadcrumbs-wrapper span:last-child{
    margin-right:0
}
.breadcrumbs .home-page-link {
    line-height: 0;
}



/**
FRONTPAGE
 */

/**
HERO-2
 */
.ban-inquiry{
    background: var(--color-surface-muted);
    padding:20px;
    margin-top:30px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.ban-inquiry .ban-inquiry-container{
    padding-left:20px;
}
.ban-inquiry .offer-container{
    margin-bottom:30px;
}
.ban-inquiry span.offer{
    font-size:24px;
    font-weight: 600;
    display: block;
    margin-bottom:10px;
}

/**
О нас промо
 */
.advantages-header {
    margin-bottom: 24px;
}

.advantages-header h2 {
    font-size: 24px;
    font-weight: 700;
}

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

.advantage-card {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--color-border-soft);
    border-radius: 20px;
    background: var(--color-surface-muted);
}

.advantage-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.advantage-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--color-surface);
    color: var(--color-primary);
    box-shadow: 0 10px 24px var(--color-shadow-soft);
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
}

.advantage-kicker {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.advantage-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--color-text-muted);
    font-size: 15px;
}

/**
Доставка по Иркутску
 */
.city-delivery-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 20px;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border-soft);
}

.city-delivery-content {
    max-width: 620px;
}

.city-delivery-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.city-delivery-content h2 {
    max-width: 560px;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.city-delivery-content p {
    max-width: 560px;
    margin-bottom: 24px;
    color: var(--color-text-muted);
    font-size: 16px;
}

.city-delivery-steps {
    display: grid;
    gap: 12px;
}

.city-delivery-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: var(--color-surface);
}

.city-delivery-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.city-delivery-step p {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .city-delivery-banner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .city-delivery-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .city-delivery-content p {
        font-size: 15px;
    }

    .city-delivery-content .btn-hero {
        display: block;
        text-align: center;
    }

    .city-delivery-step {
        grid-template-columns: 40px 1fr;
        padding: 12px;
    }

    .city-delivery-step span {
        width: 40px;
        height: 40px;
    }
}

/**
First Screen
 */
.hero{
    padding:30px 0;
    border-bottom: 1px solid var(--color-border-soft)
}
.hero .row{
    align-items: center;
}
.hero-wrapper{
    max-width: 95%;
}
.hero-txt{
    font-size: 40px;
    display: block;
    font-weight:700;
}
.hero-txt span{
    color: var(--color-primary);
}
.sub-hero{
    font-size: 16px;
    display: block;
    margin-top: 30px;
    color: var(--color-text-muted)
}
.btn-set{
    margin-top:30px;
}
.btn-hero{
    display: inline-block;
    min-height: 40px;
    font-size:16px;
    font-weight:400;
    padding: 10px 20px;
    border-radius: 40px;
    border:1px solid var(--color-primary);
    cursor:pointer;
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 20px;
}
.btn-hero.var-1{
    background: var(--color-primary);
    color: var(--color-white);
    margin-right:20px;
    font-weight:300;
}
.btn-hero.var-2{
    background: var(--color-surface);
    color: var(--color-primary);
}


/**
Categories
 */
.categories-front{
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border-soft)
}

.card {
    border: 1px solid var(--color-border-soft);
    margin: 10px 0;
}

.card.gray{
    background: var(--color-surface-muted);
    padding: 40px;
    border-radius: 20px;
}

.card.gray .card-header{
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom:10px;
}

/**
Секция каталога
 */
.brands{
    margin: 60px 0
}
.brands .brands-header{
    margin-bottom:30px;
}
.brands .brands-header h2{
    font-size: 24px;
}
.brands .catalog_item{
    padding: 0 20px 10px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    transition: all ease-in .2s;
    display: block;
    text-decoration: none;
    color: var(--color-black);
    background: var(--color-surface-muted);
    margin-bottom: 30px;
}
.brands .catalog_item:hover{
    box-shadow: 0 0 20px var(--color-shadow-soft);
    color: var(--color-primary);
    background: var(--color-surface);
}
.brands .catalog_item .avatar{
    padding:25px;
}
.brands .catalog_item .avatar svg{
    transition: all ease-in .2s;
    fill: var(--color-icon-muted);
}
.brands .catalog_item:hover .avatar svg{
    fill: var(--color-primary)
}

/**
Секция баннера
 */
.main-ban{
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border-soft)
}
.main-ban .ban-wrap{
    background: var(--color-surface-banner);
    padding: 40px;
    border-radius: 20px;
}
.main-ban .ban-wrap .row{
    align-items: center;
}
.main-ban .ban-wrap .ban-article .ban-title{
    display:block;
    font-size:35px;
    font-weight: 600;
}
.main-ban .ban-wrap .ban-article .ban-subtitle{
    display:block;
    margin-top:15px;
    color: var(--color-text-muted);
}
.main-ban .ban-wrap .ban-article .ban-btns{
    margin-top:20px;
}

/**
Best Sellers
 */
.best-sellers{
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border-soft)
}


.title-section{
    font-size: 24px;
    font-weight:700;
    display: block;
    margin-bottom: 20px;
}

/**
Catalog Products
 */
/**
Products Cards Vertical
 */
/**
Product Card Mini
 */
.product-card-min{
    position: relative;
    padding: 10px 0;
    margin:10px 0;
    border:1px solid var(--color-border-soft);
}
.product-card-min .product-image{
    display: flex;
    justify-content: center;
}
.product-card-min .product-image img{
    max-height: 178px;
}
.product-sale-label{
    position:absolute;
    top:0;
    left:0;
    background: var(--color-primary);
    color: var(--color-white);
    padding:3px 5px;
    font-weight: 300;
    font-size: 12px;
    border-radius:0 0 10px 0;
}
.product-info{
    padding:0 10px;
}
.product-price{
    margin: 5px 0;
}
.product-price .new-price{
    display: inline-block;
    font-size: 16px;
    font-weight:600;
}
.product-price .old-price{
    color: var(--color-text-muted);
    font-size: 12px;
    text-decoration: line-through;
    opacity: .7;
}

.product-available{
    margin: 5px 0;
}
.product-available span{
    color: var(--color-primary);
}
.product-card-min .product-title{
    font-size: 13px;
    margin: 5px 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions{
    margin: 5px 0;
}
.product-actions .incart{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}

/**
Inner pages
 */
.page-shell{
    padding: 20px 0 60px;
    border-bottom: 1px solid var(--color-border-soft);
}
.page-heading{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.page-heading.compact{
    margin-bottom: 20px;
}
.page-heading h1{
    color: var(--color-text-dark);
}

/**
prices
 */
.price-ru{
    font-weight:500;
}

/* Alert */
.flash{
    margin-bottom: 18px;
    border: 1px solid rgba(0, 113, 227, .14);
    border-radius: 18px;
    background: rgba(0, 113, 227, .08);
    color: var(--color-text-dark);
    padding: 14px 18px;
    font-weight: 600;
}
.flash.error{
    border-color: rgba(227, 0, 79, .2);
    background: rgba(227, 0, 79, .08);
    color: #a90034;
}
.flash.success,
.flash.Success{
    border-color: rgba(10, 122, 53, .22);
    background: rgba(10, 122, 53, .09);
    color: #0a6730;
}

/*.page-kicker{*/
/*    display: block;*/
/*    margin-bottom: 8px;*/
/*    color: var(--color-primary);*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*}*/
/*.page-actions{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    flex-wrap: wrap;*/
/*    justify-content: end;*/
/*}*/
/*.page-actions .btn-hero{*/
/*    margin: 0;*/
/*}*/
/*.page-card{*/
/*    background: var(--color-surface-muted);*/
/*    border: 1px solid var(--color-border-soft);*/
/*    border-radius: 20px;*/
/*    padding: 24px;*/
/*}*/
/*.page-section{*/
/*    margin-top: 34px;*/
/*}*/
/*.page-section h2{*/
/*    margin-bottom: 18px;*/
/*    font-size: 24px;*/
/*    line-height: 34px;*/
/*    color: var(--color-text-dark);*/
/*}*/
/*.empty-state{*/
/*    padding: 22px 24px;*/
/*    border-radius: 20px;*/
/*    background: var(--color-surface-muted);*/
/*    color: var(--color-text-muted);*/
/*}*/

/*.parts-lookup-form{*/
/*    position: relative;*/
/*    display: flex;*/
/*    gap: 12px;*/
/*}*/
/*.parts-lookup-form .search-input,*/
/*.auth-form input,*/
/*.parts-vehicle-picker select{*/
/*    width: 100%;*/
/*    min-height: 50px;*/
/*    border: 1px solid var(--color-border-input);*/
/*    border-radius: 25px;*/
/*    background: var(--color-surface);*/
/*    color: var(--color-text);*/
/*    padding: 5px 20px;*/
/*    outline: none;*/
/*}*/
/*.parts-lookup-form .search-input:focus,*/
/*.auth-form input:focus,*/
/*.parts-vehicle-picker select:focus{*/
/*    border-color: var(--color-primary);*/
/*}*/
/*.parts-lookup-form .search-btn,*/
/*.parts-tree .search-btn,*/
/*.part-main .search-btn{*/
/*    min-height: 44px;*/
/*    border-radius: 24px;*/
/*    border: 1px solid var(--color-primary);*/
/*    background: var(--color-primary);*/
/*    color: var(--color-white);*/
/*    padding: 8px 18px;*/
/*    cursor: pointer;*/
/*}*/

/*.parts-vehicle-picker{*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, minmax(0, 1fr));*/
/*    gap: 18px;*/
/*}*/
/*.parts-vehicle-picker label{*/
/*    display: block;*/
/*    margin-bottom: 8px;*/
/*}*/
/*.parts-tree{*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 10px;*/
/*    min-height: 48px;*/
/*}*/
/*.parts-products:empty,*/
/*.parts-tree:empty{*/
/*    min-height: 48px;*/
/*    border-radius: 20px;*/
/*    background: var(--color-surface-muted);*/
/*}*/
/*.parts-list{*/
/*    display: grid;*/
/*    gap: 14px;*/
/*}*/
/*.part_item{*/
/*    border: 1px solid var(--color-border-soft);*/
/*    border-radius: 20px;*/
/*    background: var(--color-surface-muted);*/
/*    padding: 20px;*/
/*    transition: background ease .2s, box-shadow ease .2s;*/
/*}*/
/*.part_item:hover{*/
/*    background: var(--color-surface);*/
/*    box-shadow: 0 0 20px var(--color-shadow-soft);*/
/*}*/
/*.part_item_featured{*/
/*    background: var(--color-surface-muted);*/
/*    margin-bottom: 10px;*/
/*}*/
/*.part-main{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    flex-wrap: wrap;*/
/*}*/
/*.part-title{*/
/*    display: inline-block;*/
/*    color: var(--color-text-dark);*/
/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    text-decoration: none;*/
/*}*/
/*.part-title:hover{*/
/*    color: var(--color-primary);*/
/*}*/
/*.part-brand,*/
/*.part-source{*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    min-height: 30px;*/
/*    border-radius: 15px;*/
/*    padding: 4px 12px;*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*}*/
/*.part-brand{*/
/*    background: var(--color-primary);*/
/*    color: var(--color-white);*/
/*}*/
/*.part-source{*/
/*    background: var(--color-surface);*/
/*    color: var(--color-text-muted);*/
/*}*/
/*.part-description,*/
/*.part-model,*/
/*.part-body,*/
/*.part-engine,*/
/*.part-year,*/
/*.part-price,*/
/*.part-quantity{*/
/*    color: var(--color-text-secondary);*/
/*}*/
/*.part-price{*/
/*    font-weight: 700;*/
/*    color: var(--color-text-dark);*/
/*}*/
/*.part-parameters{*/
/*    display: grid;*/
/*    grid-template-columns: minmax(180px, 280px) 1fr;*/
/*    gap: 1px;*/
/*    overflow: hidden;*/
/*    border-radius: 20px;*/
/*    background: var(--color-border-soft);*/
/*}*/
/*.part-parameters dt,*/
/*.part-parameters dd{*/
/*    margin: 0;*/
/*    padding: 14px 18px;*/
/*    background: var(--color-surface-muted);*/
/*}*/
/*.part-parameters dt{*/
/*    color: var(--color-text-muted);*/
/*    font-weight: 600;*/
/*}*/
/*.part-extra-details{*/
/*    width: 100%;*/
/*    margin-top: 18px;*/
/*}*/
/*.part-extra-details h3{*/
/*    margin: 18px 0 12px;*/
/*    font-size: 18px;*/
/*    line-height: 28px;*/
/*}*/

/*.button-in-cart,*/
/*.cart-action{*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-height: 38px;*/
/*    border: 1px solid var(--color-primary);*/
/*    border-radius: 20px;*/
/*    background: var(--color-primary);*/
/*    color: var(--color-white);*/
/*    padding: 6px 16px;*/
/*    cursor: pointer;*/
/*    text-decoration: none;*/
/*}*/
/*.cart-action{*/
/*    min-width: 38px;*/
/*    padding: 6px 12px;*/
/*}*/
/*.cart-action-remove{*/
/*    border-color: var(--color-border-input);*/
/*    background: var(--color-surface);*/
/*    color: var(--color-text-dark);*/
/*}*/
/*.cart-content .part_item:last-child{*/
/*    margin-top: 20px;*/
/*}*/

/*.used-hero .form-actions{*/
/*    margin-top: 22px;*/
/*}*/
/*.used-hero .btn-hero{*/
/*    margin: 0;*/
/*}*/

/*.auth-page .container{*/
/*    max-width: 520px;*/
/*}*/
/*.auth-card{*/
/*    background: var(--color-surface-muted);*/
/*}*/
/*.auth-form{*/
/*    display: grid;*/
/*    gap: 14px;*/
/*}*/
/*.auth-form label{*/
/*    display: block;*/
/*    margin-bottom: 8px;*/
/*}*/
/*.auth-form .btn-hero{*/
/*    justify-self: start;*/
/*    margin: 6px 0 0;*/
/*}*/
/*.form-link{*/
/*    margin-top: 18px;*/
/*}*/
/*.form-link a{*/
/*    color: var(--color-primary);*/
/*    text-decoration: none;*/
/*}*/
/*.flash{*/
/*    margin-bottom: 18px;*/
/*    padding: 14px 18px;*/
/*    border-radius: 16px;*/
/*    background: var(--color-surface);*/
/*    color: var(--color-text-dark);*/
/*}*/
/*.flash.error{*/
/*    color: #b00020;*/
/*}*/
/*.flash.success,*/
/*.flash.Success{*/
/*    color: #0a7a35;*/
/*}*/
