*{
    outline: none!important;
}
@media screen and (min-width:1800px) {
    html {
        font-size: 20px !important;
    }
}

@media screen and (max-width:1700px) and (min-width:1800px) {
    html {
        font-size: 18px !important;
    }
}

@media screen and (max-width:1800px) and (min-width:1600px) {
    html {
        font-size: 17px !important;
    }
}

@media screen and (max-width:1600px) and (min-width:1400px) {
    html{
        font-size: 16px!important;
    }
}
@media screen and (max-width: 1400px) and (min-width: 1350px) {
    html {
        font-size: 15px !important;
    }
}
@media screen and (max-width: 1350px) and (min-width: 1250px) {
    html {
        font-size: 14px !important;
    }
}
@media screen and (max-width: 1250px) and (min-width: 1150px) {
    html {
        font-size: 13px !important;
    }
}
@media screen and (max-width: 1150px) and (min-width: 1100px) {
    html {
        font-size: 12px !important;
    }
}
@media screen and (max-width: 1100px) and (min-width: 992px) {
    html {
        font-size: 10px !important;
    }
}

@media screen and (min-width: 992px) {
}
@media screen and (max-width: 992px) {
    .container {
        width: min(100% - 1.5rem, 46rem);
    }

    .site-header {
        position: sticky;
    }

    .header-layout {
        grid-template-columns: auto auto;
        min-height: 4.6rem;
        gap: 0.75rem;
        justify-content: space-between;
    }

    .brand img {
        width: 6.2rem;
    }

    .brand span {
        display: none;
    }

    .header-actions {
        display: flex;
        justify-content: flex-end;
        gap: 0.45rem;
    }

    .header-actions .btn {
        display: none;
    }

    .phone-link {
        align-self: center;
        font-size: 0.95rem;
        display: none;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        gap: 0.35rem;
        width: 2.7rem;
        height: 2.7rem;
        place-content: center;
        border: 0.0625rem solid var(--line);
        border-radius: 0.6rem;
        background: rgba(255, 255, 255, 0.05);
        color: var(--text);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 1.1rem;
        height: 0.125rem;
        border-radius: 1rem;
        background: currentColor;
    }

    .main-nav {
        position: fixed;
        top: 4.6rem;
        left: 0;
        right: 0;
        z-index: 18;
        display: grid;
        justify-content: stretch;
        gap: 0;
        max-height: calc(100vh - 4.6rem);
        padding: 0.75rem 1.5rem 1.1rem;
        border-bottom: 0.0625rem solid var(--line);
        background: rgba(37, 37, 37, 0.98);
        box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.34);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.85rem);
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 0.85rem 0;
        border-bottom: 0.0625rem solid var(--line);
    }

    .nav-dropdown-trigger .bi,
    .nav-models-dropdown {
        display: none;
    }

    .nav-account {
        display: block;
        color: var(--accent);
    }

    .header-search-drawer {
        padding-bottom: 0.8rem;
    }

    .header-search-form {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 3rem 0 2.5rem;
    }

    .hero-grid,
    .request-grid,
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        padding: 3rem 0;
    }

    .eyebrow {
        font-size: 0.85rem;
    }

    .footer-about p {
        max-width: none;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-text,
    .section-text {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .search-panel,
    .hero-metrics,
    .request-form {
        grid-template-columns: 1fr;
    }

    .catalog-head,
    .catalog-layout,
    .catalog-model-grid,
    .catalog-group-grid,
    .products-grid,
    .news-featured,
    .news-grid,
    .cart-layout,
    .checkout-layout,
    .checkout-success-layout,
    .checkout-next-steps,
    .cart-item,
    .checkout-form-grid,
    .checkout-radio-group,
    .profile-layout,
    .profile-overview,
    .profile-form-grid,
    .profile-orders-filter,
    .profile-order-card,
    .profile-detail-head,
    .profile-detail-grid,
    .profile-order-table-head,
    .profile-order-table-row,
    .profile-timeline,
    .product-detail-card,
    .product-detail-header,
    .product-purchase-box,
    .product-characteristics div {
        grid-template-columns: 1fr;
    }

    .catalog-search,
    .catalog-toolbar,
    .catalog-level-head {
        display: grid;
    }

    .products-mini-actions {
        justify-content: flex-start;
    }

    .mobile_catalog_toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        cursor: pointer;
        user-select: none;
        padding: 1.2rem 1.1rem;
    }
    .catalog-search{
        display: none;
    }
    .mobile_catalog_toggle .bi {
        display: inline-flex;
        flex: 0 0 auto;
        color: var(--accent);
        font-size: 0.95rem;
        transition: transform 0.2s ease;
    }

    .mobile_catalog_toggle.is-open .bi {
        transform: rotate(180deg);
    }

    .catalog-sidebar .catalog-tree {
        display: none;
    }

    .catalog-dropdown-menu {
        left: 0;
        right: auto;
    }

    .catalog-dropdown.is-mobile .catalog-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 0.45rem;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }
    .products-mini-filter{
        display: block;
    }
    .catalog-dropdown.is-mobile {
        width: auto;
    }

    .catalog-dropdown.is-mobile summary {
        width: 100%;
        justify-content: space-between;
    }

    .products-view-list .product-card {
        grid-template-columns: 1fr;
    }

    .products-view-list .product-card-image {
        border-radius: 1rem 1rem 0 0;
    }

    .catalog-search {
        grid-template-columns: auto 1fr;
    }

    .catalog-search .btn {
        grid-column: 1 / -1;
    }

   .sidebar-request{
       display: none;
   }

    .profile-sidebar {
        position: static;

    }

    .catalog-content {
        order: 1;
    }

    .profile-content {

    }

    .catalog-sort {
        justify-content: start;
    }

    .card-slide {
        min-height: 20rem;
    }

    .card-slide img {
        max-height: 18rem;
    }

    .card-slider-nav:not(.slick-initialized) {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-header h1 {
        font-size: 1.28rem;
    }

    .product-nav-arrows,
    .product-buy-btn {
        justify-self: start;
    }

    .reviews-head,
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .about-stats,
    .payment-method,
    .notice-box,
    .requisites-list div,
    .contacts-grid,
    .contacts-info,
    .contacts-form-row,
    .auth-grid,
    .auth-form-grid {
        grid-template-columns: 1fr;
    }

    .reviews-write-btn {
        justify-self: start;
    }

    .reviews-aside {
        position: static;
    }

    .content-aside {
        position: static;
    }

    .cart-summary-panel,
    .checkout-summary {
        position: static;
    }

    .cart-item {
        align-items: start;
    }

    .cart-item-image {
        width: 8rem;
    }

    .cart-item-price {
        text-align: left;
    }

    .profile-order-side,
    .profile-order-table-row > strong {
        justify-items: start;
        text-align: left;
    }

    .profile-orders-filter-actions {
        justify-content: flex-start;
    }

    .cart-remove {
        justify-self: start;
    }

    .about-photo img {
        height: 15rem;
    }

    .news-featured-photo {
        min-height: 15rem;
    }

    .news-featured-content {
        padding: 1rem;
    }

    .news-featured h2 {
        font-size: 1.3rem;
    }

    .news-card {
        min-height: auto;
    }

    .news-article-image {
        height: 15rem;
    }

    .reviews-pagination {
        justify-content: center;
    }

    .contacts-map-head {
        display: grid;
    }

    .contacts-map {
        height: 20rem;
    }

    .main-models-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .model-item-description, .main-models-item::before{
        display: none;
    }
    .main-models-item{
        min-height: 7rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .request-form textarea,
    .request-form .btn {
        grid-column: auto;
    }

    .hero-visual::before {
        inset: -1rem -0.5rem 1rem 1rem;
        border-radius: 1.4rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-head {
        display: grid;
        gap: 1rem;
    }

    .contact-widget {
        right: 0.9rem;
        top: auto;
        bottom: 5.5rem;
        transform: none;
    }

    .contact-widget-toggle {
        width: 3.55rem;
        height: 3.55rem;
    }

    .contact-widget-panel {
        right: 0;
        top: auto;
        bottom: calc(100% + 0.8rem);
        min-width: 16.5rem;
        transform: translateY(0.65rem);
    }

    .contact-widget-panel::after {
        top: auto;
        right: 1.35rem;
        bottom: -0.45rem;
        transform: rotate(135deg);
    }

    .contact-widget-item:hover .contact-widget-panel {
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.65rem);
    }

    .contact-widget-item.is-open .contact-widget-panel,
    .contact-widget-item:focus-within .contact-widget-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown-item {
        padding: 0;
    }

    .search-panel input {
        font-size: 1.1rem;
    }

    .search-panel span {
        font-size: 0.8rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .hero-metrics div {
        padding: 0.5rem
    }
    .hero-metrics span {
        font-size: 0.75rem;
    }
    .hero-metrics strong {
        font-size: 1rem;
    }
    .hero-grid{
        display: flex;
        flex-direction: column-reverse;
    }
    #models{
        padding-top: 0;
    }
    .btn-small, .btn {
        min-height: 3.2rem;
        font-size: 1rem!important;
    }
    .header-search-form input {
        min-height: 3.2rem;
        font-size: 0.95rem;
    }
    .main-nav {
        font-size: 1rem;
    }

    .section{
        padding-top: 0;
        padding-bottom: 4rem;
    }
    .hero-section{
        padding-bottom: 4rem;
    }
    .advantages-item{
        width: 100%!important;
    }
    .main-page-advantages{
        margin: 0;
    }
    .advantages-content p {
        font-size: 1rem;
        line-height: 1.2;
    }
    .footer-layout {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
        row-gap: 2rem;
    }
    .footer-block{
        width: 32%;
    }
    .footer-about, .footer-contact-block{
        width: 100%;
    }
    .slogan h3 {
        font-size: 1rem;
    }
    .footer-about p {
        font-size: 0.9rem;
    }
    .catalog-page{
        padding-top: 2rem;
    }
    .catalog-search input {
        font-size: 0.9rem;
        height: 3.2rem;
        padding: 0;
    }
    .catalog-search {
        padding: 0.8rem;
        padding-top: 0.2rem;
    }
    .section-title.sm_title {
        font-size: 1.25rem;
    }
    .catalog-model-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-level-head > span {
        padding: 0.72rem 1rem;
        font-size: 0.9rem;
    }
    .sidebar-request input {
        min-height: 3.2rem;
        font-size: 1rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))!important;
        gap: 0.7rem;
    }
    .products-mini-actions {
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-top: 1rem;
        align-items: flex-start;
    }
    .catalog-dropdown-menu a {
        margin-bottom: 0.1rem;
        display: inline-block;
    }
    .products-view-toggle{
        display: none;
    }
    .catalog-dropdown.is-mobile {
        width: 100%;
    }
    .catalog-toolbar span {
        font-size: 0.92rem;
    }
    .catalog-dropdown summary .bi-sort-down{
        font-size: 1.1rem;
    }
    .catalog-dropdown summary {
        min-height: 3.25rem;
    }
    .product-card-body {
        padding: 0.8rem;
    }
    .product-meta {
        font-size: 0.85rem;
    }
    .card-slide img {
        max-height: 20rem;
    }
    .product-detail-header h1 {
        font-size: 1rem;
    }
    .product-purchase-box {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .product-characteristics div {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .about-stats strong {
        font-size: 1.25rem;
    }
    .about-cta {
        font-size: 1rem;
    }
    .info-tile .bi {
        width: 3.45rem;
        height: 3.45rem;
        font-size: 1.55rem;
    }
    .review-form input {
        min-height: 3.2rem;
        font-size: 1rem;
    }
    .review-form textarea{
        font-size: 1rem;
    }
    .reviews-aside {
        margin-top: 1rem;
    }
    /*body, html{*/
    /*    overflow-x: hidden;*/
    /*}*/
    .table-wrap{
        overflow-x: auto;
    }
    .delivery-table {
        width: 130%;
        max-width: unset;
        min-width: unset;
    }
    .content-card{
        overflow: hidden;
    }
    .payment-method dl:not(.requisites-list) dd, .requisites-list dd {
        font-size: 0.75rem;
    }
    .contacts-main-card p {
        font-size: 0.95rem;
    }
    .contacts-form input {
        min-height: 3.2rem;
        font-size: 1rem;
    }
    .contacts-form textarea{
        font-size: 1rem;
    }
    .contacts-map-head {
        display: flex;
        align-items: center;
    }
    .contacts-map-head h2 {
        font-size: 1.15rem;
    }
    .models-more-link {
        font-size: 1rem;
    }
    .auth-form input, .signup-form input, .forgot-form input {
        font-size: 1rem;
        min-height: 3.2rem;
    }
    .auth-page-head-center {
        text-align: left;
    }
    .qty-control {
        width: 8.2rem;
    }
    .cart-item{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .checkout-form input {
        min-height: 3.2rem;
        font-size: 1rem;
    }
    .checkout-form textarea{
        font-size: 1rem;
    }
    .profile-user-card, .profile-points, .profile-mini-cart, .profile-request-form{
        display: none;
    }
    .profile-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .profile-overview div {
        padding: 0.6rem;
    }
    .profile-overview strong {
        font-size: 1rem;
    }
    .profile-overview span {
        font-size: 0.7rem;
        font-weight: 700;
    }
    .profile-request-form input, .profile-form input, .profile-form select, .profile-orders-filter input, .profile-orders-filter select {
        min-height: 3.2rem;
        padding: 0 0.9rem;
        font-size: 1rem;
    }
    .profile-request-form textarea{
        font-size: 1rem;
    }
    .profile-request-form textarea, .profile-form textarea{
        font-size: 1rem;
    }
    .profile-order-table-head{
        display: none;
    }
}

@media screen and (max-width: 550px) {
    body{
        font-size: 1.1rem;
    }
}
