.header-bottom.is-search-open .header-search-panel,
.user-dropdown.is-open .user-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.form-item select,
.header-content nav ul li a,
p {
    font-size: 15px;
    font-weight: 500;
}
@font-face {
    font-family: Inter;
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf")
        format("truetype");
}
@font-face {
    font-family: Inter;
    font-style: italic;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf")
        format("truetype");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        sans-serif;
    background-color: #fafbfd;
}
a {
    text-decoration: none;
    color: #000;
}
p {
    color: #667093;
}
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.category-page-inner,
.d-flex,
.product-cards-swiper .swiper-slide {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.breadcrumb li,
.form-icon,
.hero-section-inner,
.input-wrapper,
.position-relative,
.search-section,
.submit-btn,
.user-dropdown {
    position: relative;
}
.header {
    background-color: #132530;
    color: #9ba5b9;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 165, 185, 0.15);
    border-top: 1px solid rgba(155, 165, 185, 0.15);
    background-color: #11222c;
}
.rounded-pill {
    border-radius: 25px !important;
}
.header-bottom {
    background-color: #132530;
    top: 0;
    position: relative;
    overflow: hidden;
}
.form-icon img,
.product-cards-nav {
    top: 50%;
    transform: translateY(-50%);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.search-button,
.user-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    cursor: pointer;
}
.header-top-content ul,
header ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.footer-contact__content span,
.header-search-suggest.is-open,
select {
    display: block;
}
.header-top-content ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.me-auto,
.search-section-header p {
    margin-right: auto;
}
.bordered-item {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid rgba(155, 165, 185, 0.15);
}
.header-content nav ul li a {
    color: #9ba5b9;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.header-content nav ul li a:hover {
    color: #fff;
}
.header-content nav ul li a:hover img {
    filter: brightness(0) invert(1);
}
.header-content nav ul {
    gap: 20px;
}
.header-search-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    padding: 0 15px;
    background-color: #132530;
    border-top: 1px solid rgba(155, 165, 185, 0.12);
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1),
        visibility 0s linear 0.45s;
}
.header-bottom.is-search-open .header-search-panel {
    transition:
        transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1),
        visibility linear;
}
.header-search-form-wrap {
    width: 100%;
    padding: 14px 0;
}
.header-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 0 0 auto;
}
.header-search-form .visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.header-search-form .header-search-input {
    flex: 1;
    height: 48px;
    width: 100%;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 500;
    color: #132530;
    background: #fff;
    border: 1px solid rgba(155, 165, 185, 0.25);
    border-radius: 6px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.header-search-form .header-search-input::placeholder {
    color: #9ba5b9;
}
.header-search-form .header-search-input:hover {
    border-color: rgba(155, 165, 185, 0.4);
}
.header-search-form .header-search-input:focus {
    outline: 0;
    border-color: #a70000;
    box-shadow: 0 0 0 3px rgba(167, 0, 0, 0.12);
}
.header-search-form .header-search-submit {
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #a70000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}
.header-search-form .header-search-submit:hover {
    background: #8c0000;
}
.header-search-form .header-search-submit:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(167, 0, 0, 0.3);
}
.header-search-close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #9ba5b9;
    background: rgba(155, 165, 185, 0.05);
    border: 1px solid rgba(155, 165, 185, 0.15);
    border-radius: 3px;
    cursor: pointer;
    transition:
        color 0.2s,
        background 0.2s;
    align-items: center;
    justify-content: center;
}
.header-search-close:hover {
    color: #fff;
    background: rgba(155, 165, 185, 0.2);
}
.header-search-close:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(155, 165, 185, 0.4);
}
.header-search-trigger {
    transition: background-color 0.2s;
}
.header-search-trigger:hover {
    background-color: rgba(155, 165, 185, 0.15) !important;
}
.header-bottom.is-search-open .header-search-trigger {
    background-color: rgba(167, 0, 0, 0.2) !important;
}
.header-search-field-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}
.header-search-suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: min(360px, 55vh);
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(155, 165, 185, 0.35);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(8, 17, 49, 0.14);
    z-index: 1001;
    display: none;
}
.header-search-suggest__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #132530;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(155, 165, 185, 0.12);
    transition: background 0.15s;
}
.header-search-suggest__item:last-child {
    border-bottom: 0;
}
.header-search-suggest__item:focus,
.header-search-suggest__item:hover {
    background: rgba(167, 0, 0, 0.06);
    outline: 0;
}
.header-search-suggest__thumb {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    background: #f5f6f8;
}
.form-item,
.header-search-suggest__meta {
    flex: 1;
    min-width: 0;
}
.header-search-suggest__name {
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.header-search-suggest__price {
    font-size: 13px;
    color: #a70000;
    font-weight: 600;
    margin-top: 2px;
}
.header-search-suggest__empty {
    padding: 14px;
    font-size: 14px;
    color: #667093;
    text-align: center;
}
.swiper-button-next:after,
.swiper-button-prev:after,
.vehicle-parts-banner .swiper {
    display: none;
}
.btn-primary,
.category-section__icon,
.category-section__link,
.dots,
.header-buttons,
.product-card-image,
.product-card-price,
.product-cards-nav,
.search-form,
.search-section-header,
.user-dropdown-item {
    display: flex;
    display: flex;
}
.search-button {
    border: 1px solid rgba(155, 165, 185, 0.15);
    background-color: rgba(155, 165, 185, 0.05);
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}
.user-button {
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.bg-primary {
    background-color: #a70000;
    color: #fff;
}
.text-white {
    color: #fff !important;
}
.text-primary {
    color: #a70000 !important;
}
.header-buttons {
    align-items: center;
    gap: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(155, 165, 185, 0.15);
}
.user-dropdown .user-button {
    transition:
        background-color 0.2s,
        transform 0.2s;
}
.user-dropdown .user-button:hover {
    background-color: #8c0000 !important;
}
.user-dropdown .user-button:focus {
    outline: rgba(167, 0, 0, 0.5) solid 2px;
    outline-offset: 2px;
}
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity 0.2s,
        transform 0.2s,
        visibility 0.2s;
    z-index: 1000;
    list-style: none;
}
.fast-filter__icon img,
.filter-search button,
.product-cards-next,
.product-cards-prev {
    top: 50%;
    transform: translateY(-50%);
}
.user-dropdown-header {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}
.user-dropdown-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #132530;
}
.user-dropdown-item {
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition:
        background-color 0.15s,
        color 0.15s;
}
.user-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #a70000;
}
.user-dropdown-item--primary {
    color: #a70000;
    font-weight: 600;
}
.user-dropdown-item--primary:hover {
    background-color: rgba(167, 0, 0, 0.08);
    color: #8c0000;
}
.user-dropdown-icon {
    font-size: 16px;
    line-height: 1;
    width: 20px;
    text-align: center;
}
.btn-social svg,
.user-dropdown-icon img {
    width: 20px;
    height: 20px;
}
.user-dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}
.hero-content {
    max-width: 605px;
    padding-top: 80px;
}
.hero-content-title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content-description {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
}
.btn-primary,
.search-section-header {
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
}
.hero-section {
    position: relative;
    background-color: #132530;
    min-height: 500px;
    overflow: hidden;
}
.hero-section-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.btn-primary,
select {
    height: 51px;
    width: 100%;
}
.hero-section-inner {
    z-index: 1;
}
.search-section {
    background-color: #fff;
    border-radius: 5px;
    bottom: 50px;
}
.search-section-header {
    padding: 25px;
    border-bottom: 1px solid rgba(155, 165, 185, 0.15);
    align-items: center;
    justify-content: space-between;
}
.search-form {
    gap: 10px;
    padding: 25px;
}
.btn-primary,
.product-cards-nav {
    cursor: pointer;
    align-items: center;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px 9px;
    padding-right: 35px;
    padding-left: 20px;
    border-radius: 5px;
    color: #667093;
    border: 1px solid rgba(155, 165, 185, 0.15);
}
.form-item select:focus {
    border-color: #a70000;
}
.form-icon img {
    position: absolute;
    left: 10px;
}
.form-icon select {
    padding-left: 35px;
}
.btn-primary {
    justify-content: center;
    border-radius: 5px;
    border: none;
    background-color: #a70000;
    color: #fff;
    transition: background-color 0.3s;
}
.product-cards-slider {
    position: relative;
    margin-top: 24px;
}
.brand-section__item,
.product-cards-swiper {
    width: 100%;
}
.product-cards-swiper .swiper-wrapper {
    align-items: stretch;
}
.product-cards-swiper .product-card {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
}
.product-cards-swiper .product-card-image {
    margin: 0 0 20px;
}
.product-cards-nav {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(155, 165, 185, 0.25);
    background: #fff;
    color: #081131;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        background-color 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.product-cards-nav:hover {
    background: #f5f6f8;
    border-color: rgba(155, 165, 185, 0.4);
}
.product-cards-nav.swiper-button-disabled,
.product-cards-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.product-cards-prev {
    left: -12px;
}
.product-cards-next {
    right: -12px;
}
.dots {
    gap: 5px;
}
.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #667093;
    opacity: 0.4;
}
.dots span:first-child {
    opacity: 0.1;
}
.dots span:nth-child(2) {
    opacity: 0.3;
}
.product-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    max-width: 294px;
    overflow: hidden;
}
.product-card-image {
    width: 100%;
    height: 244px;
    border-radius: 5px;
    border: 1px solid rgba(155, 165, 185, 0.15);
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-card-content h3,
.product-card-price {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}
.support-banner__title,
h2 {
    font-size: 22px;
    font-weight: 600;
}
.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-card-content {
    height: 130px;
}
.product-card-content p {
    font-size: 15px;
    font-weight: 500;
    color: #667093;
}
.product-card-price {
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    color: #081131;
    border: 1px solid rgba(155, 165, 185, 0.15);
    gap: 10px;
}
h2 {
    margin-bottom: 5px;
}
.category-section {
    background-color: #f9f9fb;
    padding: 40px 0;
    margin-top: 40px;
}
.category-section__icon {
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: rgba(102, 112, 147, 0.05);
    border: 1px solid rgba(155, 165, 185, 0.15);
    border-radius: 5px;
}
.category-section__link {
    align-items: center;
    gap: 20px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 20px center;
    width: 100%;
    padding: 20px 48px 20px 20px;
    border-radius: 5px;
    color: #667093;
}
.category-section__link:hover {
    background-image: url("../images/category-baglanti.svg");
    color: #a70000;
}
.category-section__link:hover .category-section__icon img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(7458%)
        hue-rotate(0deg) brightness(55%) contrast(118%);
}
.category-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.category-section__item {
    height: 100%;
}
.text-center {
    text-align: center;
}
.category-section__header,
.login-header,
.product-information-description {
    margin-bottom: 30px;
}
.brand-section__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.brand-section__link {
    height: 120px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-section__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.brand-section__header {
    margin-bottom: 40px;
    margin-top: 40px;
}
.support-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #a70000;
    height: 135px;
    margin-top: 50px;
    border-radius: 5px;
    padding-right: 40px;
    position: relative;
    overflow: hidden;
}
.support-banner__button {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 20px;
    border-radius: 5px;
    text-decoration: none;
}
.support-banner__media {
    width: 190px;
    height: 135px;
}
.support-banner__content {
    margin-right: auto;
    color: #fff;
    margin-left: 40px;
    position: relative;
    z-index: 1;
    background-color: #8b0707;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
.support-banner__title {
    margin-bottom: 10px;
}
.footer-contact__value,
.support-banner__description {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.support-banner__bg-item {
    position: absolute;
    top: 0;
    right: 25%;
    width: 230px;
    height: 135px;
    object-fit: contain;
    object-position: center;
}
.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.footer-nav__columns,
.product-list {
    grid-template-columns: repeat(3, 1fr);
}
.blog-card {
    width: 100%;
    min-width: 0;
}
.blog-card__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}
.blog-preview {
    margin-top: 40px;
    padding-top: 50px;
    background-color: #f9f9fb;
}
.blog-preview__all {
    background-color: rgba(102, 112, 147, 0.05);
    color: #667093;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 5px;
}
.blog-preview__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.blog-card__media {
    width: 100%;
    height: 200px;
}
.blog-card__title {
    color: #081131;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-card__excerpt {
    color: #667093;
    font-size: 14px;
    font-weight: 400;
}
.blog-card__meta {
    color: #667093;
    font-weight: 500;
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 7px;
}
.seo-article {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
}
.seo-article__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.seo-article__subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 16px;
}
.seo-article__content p {
    margin-bottom: 16px;
    line-height: 1.6;
}
.seo-article__toggle {
    margin-top: 20px;
    padding: 12px 24px;
    background: #f5f6f8;
    border: 1px solid rgba(155, 165, 185, 0.25);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #081131;
}
.seo-article__toggle:hover {
    background: #eef0f3;
}
.site-footer {
    background-color: #132530;
    color: #fff;
}
.footer-nav__columns {
    display: grid;
}
.site-footer__grid {
    display: flex;
    background-color: #11222c;
}
.footer-brand {
    min-width: 25%;
    padding: 20px;
}
.footer-brand__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    font-style: normal;
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-contact__icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social__list {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-nav {
    width: 100%;
    padding: 50px 0;
}
.footer-nav__list {
    list-style: none;
}
.footer-nav__link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.footer-nav__title {
    color: #667093;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #162935;
    margin-top: 30px;
}
.breadcrumb,
.filter-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(155, 165, 185, 0.15);
}
.footer-contact__label {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 3px;
}
.footer-brand__address-text {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    font-style: normal;
    max-width: 260px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-bottom: 30px;
}
.breadcrumb-item.active {
    color: #081131;
    font-weight: 600;
    font-size: 15px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    background-image: url("../images/arrow-right.svg");
    background-repeat: no-repeat;
    width: 5px;
    height: 8px;
    display: block;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}
.breadcrumb-item a {
    color: #667093;
    font-size: 15px;
    font-weight: 400;
}
.category-header__title,
.filter-section h2 {
    font-weight: 600;
    font-size: 15px;
}
.filter-section {
    background-color: #fff;
    border-radius: 5px;
}
.category-header,
.page-link,
.product-list .product-card-footer {
    background-color: rgba(102, 112, 147, 0.05);
}
.sidebar {
    width: 25%;
}
.filter-search {
    width: 100%;
    height: 50px;
    position: relative;
    margin-bottom: 20px;
}
.filter-search input {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(155, 165, 185, 0.15);
    border-radius: 5px;
    outline: 0;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 400;
    color: #667093;
}
.filter-filter-list ul {
    list-style: none;
    padding-left: 0;
}
.filter-filter-list {
    border: none;
}
.filter-search button {
    position: absolute;
    right: 20px;
    border: none;
    background: #fff;
    cursor: pointer;
}
.filter-filter-list a {
    color: #081131;
    font-size: 15px;
    font-weight: 500;
}
.main-content {
    width: 75%;
    padding-left: 20px;
}
.category-header {
    border: 1px solid rgba(102, 112, 147, 0.15);
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.category-header__title {
    color: #081131;
    margin-right: auto;
    margin-left: 10px;
}
.category-header__brand-logo {
    width: 26px;
    height: 26px;
}
.category-header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fast-filter__select {
    height: 40px;
    padding-left: 35px;
}
.fast-filter__item {
    width: fit-content;
    position: relative;
}
.fast-filter__icon img {
    position: absolute;
    left: 10px;
}
.product-list {
    display: grid;
    gap: 20px;
}
.product-list .product-card {
    border: 1px solid rgba(102, 112, 147, 0.07);
    padding: 0;
}
.product-list .btn-primary {
    width: fit-content;
    height: 38px !important;
    padding: 0 10px;
    border-radius: 20px !important;
    font-size: 13px;
}
.product-list .product-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #f0f1f5;
}
.product-review-stars {
    display: inline-flex;
    width: fit-content;
}
.page-link,
.pagination {
    display: flex;
    align-items: center;
}
.product-reviews span {
    font-size: 13px;
    font-weight: 500;
    color: #081131;
}
.product-list .product-card-content {
    height: 80px;
}
.product-card-top {
    padding: 20px;
}
.old-price {
    color: #667093;
    font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
}
.old-price:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    background-image: url("../images/line-through.svg");
}
.pagination {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.page-item {
    margin: 0 5px;
}
.page-link {
    color: #081131;
    font-size: 15px;
    font-weight: 500;
    width: 49px;
    height: 49px;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(102, 112, 147, 0.1);
}
.page-link.active {
    background-color: rgba(167, 0, 0, 0.05);
    border: 1px solid rgba(167, 0, 0, 0.1);
    color: #a70000;
}
.bottom-menu-container {
    display: none;
    height: 70px;
}
.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 70px;
    background-color: #fff;
    border-top: 1px solid #d0d4df;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
}
.bottom-menu-item {
    width: 20%;
    position: relative;
}
.bottom-menu-item.active::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 7px;
    background-color: #a70000;
    border-radius: 0 0 5px 5px;
}
.bottom-menu-item a,
.bottom-menu-item button {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    gap: 3px;
    color: #bfc3d3;
}
.bottom-menu-item a img {
    width: 18px;
}
.bottom-menu__open-categories {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: 0 0;
    width: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    opacity: 0.7;
    text-decoration: none;
}
.bottom-menu__open-categories img {
    width: 18px;
    height: auto;
}
.mobile-brand-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s linear;
}
.mobile-brand-offcanvas.is-open {
    pointer-events: auto;
    visibility: visible;
}
.mobile-brand-offcanvas__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 37, 48, 0.55);
    opacity: 0;
    transition: opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-brand-offcanvas.is-open .mobile-brand-offcanvas__backdrop {
    opacity: 1;
}
.mobile-brand-offcanvas__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(100%, 340px);
    max-width: 100%;
    background: linear-gradient(180deg, #fff 0, #f8fafc 100%);
    box-shadow: 12px 0 40px rgba(19, 37, 48, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
    border-right: 1px solid rgba(19, 37, 48, 0.08);
}
.mobile-brand-offcanvas.is-open .mobile-brand-offcanvas__panel {
    transform: translateX(0);
}
.mobile-brand-offcanvas__header {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 18px 16px;
    background: linear-gradient(135deg, #132530 0, #1a3544 100%);
    color: #fff;
    border-bottom: 3px solid #a70000;
}
.mobile-brand-offcanvas__header-text {
    flex: 1;
    min-width: 0;
}
.mobile-brand-offcanvas__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}
.mobile-brand-offcanvas__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}
.mobile-brand-offcanvas__close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mobile-brand-offcanvas__close:hover {
    background: rgba(255, 255, 255, 0.18);
}
.mobile-brand-offcanvas__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 14px 24px;
    -webkit-overflow-scrolling: touch;
}
.brand-menu--offcanvas .brand-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.brand-menu {
    width: calc(100% - 270px);
    overflow: auto;
    margin-left: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(19, 37, 48, 0.32) rgba(19, 37, 48, 0.08);
}
.brand-menu::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.brand-menu::-webkit-scrollbar-track {
    background: rgba(19, 37, 48, 0.08);
    border-radius: 999px;
}
.brand-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(19, 37, 48, 0.42) 0%,
        rgba(167, 0, 0, 0.5) 100%
    );
    border-radius: 999px;
    border: 2px solid rgba(19, 37, 48, 0.08);
}
.brand-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(19, 37, 48, 0.58) 0%,
        rgba(167, 0, 0, 0.62) 100%
    );
}
.brand-menu--offcanvas .brand-menu__list li {
    margin: 0;
}
.brand-menu--offcanvas .brand-menu__list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.15s;
    text-decoration: none;
}
.brand-menu--offcanvas .brand-menu__list a:focus-visible,
.brand-menu--offcanvas .brand-menu__list a:hover {
    border-color: rgba(167, 0, 0, 0.35);
    box-shadow: 0 4px 14px rgba(19, 37, 48, 0.08);
    outline: 0;
}
.brand-menu--offcanvas .brand-menu__list a:active {
    transform: scale(0.99);
}
.brand-menu--offcanvas .brand-menu__list a span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
}
.brand-menu--offcanvas .brand-menu__list a img {
    display: block;
    max-width: 28px;
    height: auto;
}
html.mobile-brand-offcanvas-open {
    overflow: hidden;
}
@media (min-width: 769px) {
    .mobile-brand-offcanvas {
        display: none !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .mobile-brand-offcanvas,
    .mobile-brand-offcanvas__backdrop,
    .mobile-brand-offcanvas__panel {
        transition-duration: 0s !important;
    }
}
.footer-social__item a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
        hue-rotate(265deg) brightness(100%) contrast(100%);
}
.login-page {
    background-color: #f3f4f6;
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    width: 100%;
    min-height: 600px;
}
.login-image {
    flex: 1;
    background-image: url("../images/hero-section-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #fff;
    text-align: center;
}
.login-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(19, 37, 48, 0.75) 0,
        rgba(19, 37, 48, 0.7) 100%
    );
    z-index: 1;
}
.login-image-content {
    position: relative;
    z-index: 2;
}
.input-icon,
.submit-btn svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.login-image-logo {
    margin-bottom: 30px;
    max-width: 240px;
}
.login-image h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.login-image p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}
.login-form-wrapper {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}
.login-subtitle {
    color: #64748b;
    font-size: 15px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
    font-size: 14px;
}
.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 15px;
    color: #1e293b;
    transition: 0.3s;
    background-color: #f8fafc;
}
.input-wrapper input:focus {
    outline: 0;
    border-color: #a70000;
    background-color: #fff;
}
.input-icon {
    left: 16px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    user-select: none;
}
.forgot-password,
.register-area a {
    color: #132530;
    text-decoration: none;
}
.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: #132530;
}
.forgot-password {
    font-size: 14px;
    font-weight: 600;
}
.back-to-login a:hover,
.forgot-password:hover,
.register-area a:hover {
    text-decoration: underline;
}
.register-area {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}
.register-area a {
    font-weight: 700;
    margin-left: 5px;
}
.social-login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 14px;
}
.btn-google,
.btn-social {
    color: #1e293b;
}
.social-login-separator::after,
.social-login-separator::before {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}
.social-login-separator span {
    padding: 0 10px;
}
.social-login-buttons {
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
}
.btn-social {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-social:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}
.btn-facebook {
    color: #1877f2;
    border-color: #e7f3ff;
    background-color: #f0f7ff;
}
.btn-facebook:hover {
    background-color: #e7f3ff;
    border-color: #d1e9ff;
}
.btn-apple {
    color: #000;
    background-color: #fff;
}
.submit-btn svg {
    right: 20px;
}
.register-success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(19, 37, 48, 0.6);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.28s,
        visibility 0.28s;
}
.register-success-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.register-success-modal__card {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(19, 37, 48, 0.08);
    box-shadow: 0 12px 40px rgba(19, 37, 48, 0.08);
    padding: 36px 32px 32px;
    text-align: center;
}
.register-success-modal__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(167, 0, 0, 0.08);
    color: #a70000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.register-success-modal__title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #132530;
}
.register-success-modal__text {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
}
.register-success-modal__actions {
    margin-top: 28px;
}
.register-success-modal__actions .btn-primary {
    min-width: 160px;
}
.login-form-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.back-to-login {
    margin-top: 28px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}
.back-to-login a {
    color: #132530;
    font-weight: 700;
    text-decoration: none;
}
.product-information {
    margin-top: 30px;
}
.product-information-item h4 {
    margin-bottom: 15px;
}
