/* Import Inter Font */
@import url('../fonts/inter/stylesheet.css');

/* Custom CSS for MPK TAERS */

:root {
    --primary-yellow: #FFDC2E;
    --dark-grey: #161616;
    --light-grey: #F8F9FA;
    --accent-red: #B40000;
    --text-dark: #1F1F1F;
    --text-light: #FFFFFF;
}

/* Иконка в заголовке формы быстрого заказа */
.fast-order__icon {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    filter: brightness(0) saturate(100%);
}

.row {
    margin-right: calc(-0.2 * var(--bs-gutter-x));
    margin-left: calc(-0.2 * var(--bs-gutter-x));
}
.row>* {
 
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.3);
    padding-left: calc(var(--bs-gutter-x) * 0.3);
    margin-top: var(--bs-gutter-y);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    min-width: 320px;
}
.mt--10 {
    margin-top: -10px;
}   
.mt--20 {   
    margin-top: -20px;
}   
.mt--30 {   
    margin-top: -30px;
}   
.mt-10 {
    margin-top: 10px;
}   
.mt-20 {   
    margin-top: 20px;
}   
.mt-30 {   
    margin-top: 30px;
}   
.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}   
.z-4 {
    z-index: 4;
}
.z-5 {
    z-index: 5;
}
.mr-10 {
    margin-right: 10px;
}   
.g-10 {
    gap: 10px !important;
}   

header {
    margin-bottom: 20px;
}

/* Sticky header spacer */
.sticky-spacer {
    height: 56px;
    display: none;
}

.sticky-spacer.active {
    display: block;
}

/* Top Bar Styles */
.top-bar {
    background: var(--primary-yellow);
    background-image: url('../images/topbg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding: 15px 0;
    position: relative;
    z-index: 1001;
 
}
.top-bar:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 9px;
    background-image: url('../images/menubefore.webp');
    background-repeat: repeat-x;
    background-position: center 0;
    background-size: auto 9px;
    z-index: -1;
}

.container {
    max-width: 1600px;
}

.top-bar-container {
    margin: 0 auto;
 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 1;
}
.top-bar-container:before {
    content: '';
    position: absolute;
    display: block;
    top: -8px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('../images/line.svg');
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 600px 15px;
    z-index: 1;
}
/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 131px;
    height: auto;
}

 
/* Contact Cities Section */
.contact-cities-section {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1002;
}

.contact-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px 15px;
    max-width: 800px;
}

/* Dropdown Menu */
.cities-dropdown {
    display: none;
    position: relative;
    width: 100%;
    max-width: 135px;
    z-index: 10000;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 60px;
    width: 100%;
    text-align: left;
}

.dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.5);
}

.visible-city {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 30px;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dropdown-toggle i {
    transition: transform 0.3s;
    font-size: 14px;
    display: block;
    position: absolute;
    top: 6px;
    left: 67px;
}

/* Bootstrap dropdown menu customization */
.cities-dropdown .dropdown-menu {
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    min-width: 400px;
    z-index: 10000;
}

.cities-dropdown .dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-dropdown .dropdown-menu .dropdown-item {
    padding: 0;
    background: none;
    border: none;
}

.cities-dropdown .dropdown-menu .dropdown-item:hover {
    background: none;
}

.dropdown-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dropdown-cities .city-item {
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-cities .city-item:hover {
    background: rgb(212 212 212 / 17%);
    transform: translateY(-1px);
}

.city-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 6px;

}

.city-item:hover {
    background: rgb(255 248 62 / 37%);
    transform: translateY(-1px);
}

.city {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.city-phone {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s;
}

.city-phone:hover {
    color: var(--accent-red);
}

.city-item:hover .city {
    color: var(--accent-red);
}

/* Actions Section */
.actions-section {
    display: flex;
    align-self: start;
    height: 100%;
}

.top-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.top-actions-row {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap;

    position: relative;
}
.gap20 {
    gap: 20px;
}
.action-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;


    gap: 6px;
    transition: all 0.3s;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;

}

.action-link:hover {
    color: var(--accent-red);
 
}

.action-link i {
    font-size: 16px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: #ADADAD;
    font-size: 15px;
    z-index: 2;
}

.search-input {
    padding: 0 25px 0 45px;
    border: none;
    border-radius: 5px; 
    font-size: 15px;
    background: white;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
    height: 51px;
    line-height: 51px;
    box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(231, 76, 60, 0.0);
    transition: all 0.3s;
}

.search-input:focus {
    outline: none; 
    box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(231, 76, 60, 0.9);
}
.search-input::placeholder {
    color: #ADADAD;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    font-family: 'Inter', sans-serif;
}

.phone-numbers a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-numbers a:hover {
    color: var(--accent-red);
}

.icons {
    display: flex;
    gap: 12px;
}

.icon-link {
    position: relative;
    color: var(--text-dark);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    padding: 4px;
    border-radius: 4px;
}

.icon-link:hover {
    color: var(--accent-red);
    background: rgba(255,255,255,0.2);
}

.badge {
    position: absolute;
    top: -6px;
    right: -2px;
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Navigation Bar Styles */
.navbar {
    background: var(--dark-grey);
    position: relative;
    height: 56px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

.navbar.sticky.hiding {
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}



/* Mobile Header Styles */
.mobile-header {
    display: none;
    background: var(--primary-yellow);
    background-image: url('../images/topbg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

.mobile-header.sticky.hiding {
    animation: slideUp 0.3s ease-out forwards;
}



/* .mobile-header:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 9px;
    background-image: url('../images/line.svg');
    background-repeat: repeat-x;
    background-position: center 100%;
    background-size: auto 14px;
    z-index: -1;
} */

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mobile-logo {
    flex-shrink: 0;
}

.mobile-logo .logo-img {
    width: 58px;
    height: auto;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0px;
}

.mobile-action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    padding: 0px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 40px;
}

.mobile-action-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.4) contrast(1);
    transition: all 0.3s;
}

.mobile-action-btn:hover .mobile-action-icon {
    filter: saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(340deg) brightness(69%) contrast(119%);
}

.mobile-action-btn.fav-icon:hover,
.mobile-action-btn.cart-icon:hover {
    transform: scale(1.1);
}

.mobile-action-btn:hover {
    color: var(--accent-red);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-action-btn .badge {
    position: absolute;
    top: 2px;
    right: 3px;
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.hamburger-btn {
    font-size: 30px;
}

/* Sidebar Offcanvas Styles */
.offcanvas {
    background: white;
}

.offcanvas-close-wrapper {

    position: absolute;
    right: 16px;
    display: block;
    z-index: 99999;
}

.btn-close {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

 

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-section-title {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 0;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.sidebar-nav-link:hover {
    background: rgb(255 255 255 / 5%);
    padding-left: 10px;
}

.sidebar-nav-link .category-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

.sidebar-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    
}

.sidebar-city-item {
    padding: 4px 7px;
    border-radius: 6px;
    
    transition: all 0.3s;
    width: calc(50% - 6px);
}

.sidebar-city-item:hover {
    background: rgb(255 255 255 / 5%);
}

.sidebar-city {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.sidebar-city-phone {
    font-size: 13px;
    color: var(--primary-yellow);
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}

.sidebar-city-phone:hover {
    color: var(--accent-red);
}

.sidebar-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.sidebar-social-link:hover {
    color: var(--accent-red);
    background: rgba(255, 220, 46, 0.1);
}

.sidebar-social-link .icon-img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: brightness(1.5);
}

/* Search Offcanvas Styles */
#searchOffcanvas {
    background: #FFDC2E;
    height: 64px;
    overflow-y: hidden;
}
#searchOffcanvas .offcanvas-body {
    overflow: hidden;
}

#sidebarOffcanvas {
    background: #1f1f1f;
    width: 350px;
}
#sidebarOffcanvas .btn-close {
    filter: invert(1);
}

.search-container {
    padding: 0;
    margin: -10px 0 0 0;
}
.search-container .search-box {
    max-width: 600px;
    margin: 0 auto;


}

.search-container .search-input {
    width: calc(100% - 48px);
    height: 50px;
    font-size: 18px;
    padding: 0 25px 0 49px;
}
/* Контейнер для результатов мобильного поиска */
.mobile-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 3000;
    display: none;
}

.mobile-search-results .search-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.mobile-search-results .search-item:hover {
    background-color: #f8f9fa;
}

.mobile-search-results .search-item:last-child {
    border-bottom: none;
}

.mobile-search-results .search-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.mobile-search-results .search-item .item-name {
    flex: 1;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.mobile-search-results .search-item .item-price {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

  .navbar:after {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
    width: 100%;
    height: 64px;
    background-image: url(../images/menubg.webp);
    background-repeat: repeat-x;
    background-position: center 0;
    background-size: auto 80px;
    z-index: -1;
}
/* Navigation Info Dropdown Styles */
.nav-info-dropdown {
    display: none;
    position: relative;
    z-index: 9999;
}

.contacts-link {
    display: none;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-light) !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    padding: 8px 1px !important;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 15px;
}

.nav-dropdown-toggle:hover {
    color: var(--primary-yellow) !important;
}

.nav-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-info-dropdown.show .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-info-dropdown .dropdown-menu {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 5px;
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    padding: 15px 20px;
}

.nav-info-dropdown .dropdown-menu .nav-link {
    color: var(--text-dark) !important;
    padding: 8px 10px !important;
 }

.nav-info-dropdown .dropdown-menu .nav-link:hover {
    color: var(--accent-red) !important;
    background: rgba(151, 151, 151, 0.112);

}
  
.nav-info-dropdown .dropdown-menu .dropdown-item {
    color: var(--text-dark);
    padding: 8px 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: block;
}

.nav-info-dropdown .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 220, 46, 0.1);
    color: var(--accent-red);
}


.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px 20px;

}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    padding: 8px 1px !important;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--primary-yellow) !important; 
}

.nav-link i {
    font-size: 16px;
}

.nav-link.category-link {
    font-size: 17px;
    font-weight: 700;
}

.icon-link {
    width: 32px;
    height: 32px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    padding: 4px;
    transition: all 0.2s;
}
.icon-img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.4) contrast(1);
    transition: all 0.2s;
}
.icon-link.tg-icon:hover {
    background-color: #3899e8;
}
.icon-link.tg-icon:hover .icon-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
}
.icon-link.viber-icon:hover {
    background-color: #7d44e7;
}
.icon-link.viber-icon:hover .icon-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
}


.fav-icon,.cart-icon {
    width: 50px;
}
.fav-icon img,.cart-icon img {
    width: 50px;
    transition: all 0.2s;
}
.fav-icon:hover, .cart-icon:hover {
    background-color:transparent;
    transform: scale(1.1);
}
.fav-icon:hover img, .cart-icon:hover img{
    filter: saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(340deg) brightness(69%) contrast(119%);
}

.promo-section {
    margin-top: 80px;
}

.category-icon {
    width: 28px;
    height: 28px;
    transition: all 0.2s;
}

.category-link:hover .category-icon {
    transform: scale(1.2);
}
.category-link:hover {
    text-decoration: none !important;
}



/* Main Content Styles */
.tire-selection-card {
    background: #F5F5F5;
    background-image: url('../images/texture1.webp');
    background-size: auto 535px;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 30px 8px 8px 30px;
    padding: 40px;
    height: 100%;
    position: relative;
}

.card-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.tire-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.form-select {
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    background: white;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 220, 46, 0.3);
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary {
    background: var(--primary-yellow);
    border: none;
    color: var(--text-dark);
    font-weight: bold;
    padding: 16px 50px;
    border-radius: 7px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    /* box-shadow: inset 0 4px 9px 0px #fffa6400, inset 0 2px 0 0px #fffc9600, 0 1px 0 0 #f2d60000, inset 0 -2px 0px 0px #fffd9d00, inset 0 2px 0 0px #fffdb400, 0 -1px 0 0 #ffe03f00; */
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #dc0606 !important;
    backdrop-filter: blur(2px);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    /* box-shadow: inset 0 4px 9px 0px #fffb64, inset 0 2px 0 0px #fffc96, 0 1px 0 0 #f2d600, inset 0 -2px 0px 0px #fffd9d9c, inset 0 2px 0 0px #fffdb4, 0 -1px 0 0 #ffe03f; */
    box-shadow: none;
}
.btn-secondary {
    background: var(--accent-red);
    border: none;
    color: var(--text-light);
    font-weight: bold;
    padding: 16px 50px;
    border-radius: 7px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    /* box-shadow: inset 0 4px 9px 0px #D8000000, inset 0 2px 0 0px #D8000000, 0 1px 0 0 #D8000000, inset 0 -2px 0px 0px #D8000000, inset 0 2px 0 0px #D8000000, 0 -1px 0 0 #D8000000; */
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background: #dc0606 !important;
    backdrop-filter: blur(2px);
    transform: translateY(-2px);
    /* box-shadow: inset 0 4px 9px 0px #ff7e00, inset 0 2px 0 0px #ff8e8e, 0 1px 0 0 #d80000, inset 0 -2px 0px 0px #ffa0a054, inset 0 2px 0 0px #ff7575, 0 -1px 0 0 #ff3f3f; */
}

.btn-mini {
    background: #b4000000;
    border: none;
    color: var(--accent-red);
    font-weight: bold;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;    
    border: 2px solid var(--accent-red);
}


.btn-mini:hover, .btn-mini:focus, .btn-mini:active {
    background: #dc0606 !important;
    backdrop-filter: blur(2px);
    color: var(--text-light) !important;
    transform: translateY(-2px);
}
.btn-mini i {
    font-size: 16px;
}




/* Special Offer Card Styles */
.special-offer-card {
    background: var(--primary-yellow); 
    background-size: 600px auto;
    border-radius: 8px 30px 30px 8px;
    padding: 30px;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-position: 100% -100px;

}
.special-offer-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 483px;
    height: 123px;
    background-image: url('../images/promo-button-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: 1;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
    position: relative;
}
.offer-image {
    position: absolute;
    display: block;
    right: 0;
    bottom: 0; 
    z-index: 1;
}
 
.offer-label {
    color: var(--accent-red);
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px; 
    font-family: 'Inter', sans-serif;
}

.offer-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    max-width: 430px;
}
.offer-discount {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-red);
}

.offer-button {
    z-index: 2;
}


.offer-image img {
    max-width: 100%;
    height: auto;
}

.carousel-nav {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-grey);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: #34495E;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

/* Brands and Categories Section */
.brands-categories-section {
    background: white;
    padding: 0 0 80px;
}

/* Sales Hits Section */
.sales-hits-section {
    padding: 0 0 80px;
    background: white;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #F8F9FA;
    background-image: url(../images/bibtexture.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.reviews-title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.reviews-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.btn-leave-review {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-leave-review:hover {
    background: #ffd213;
    color: var(--text-dark);
    transform: translateY(-2px);
}

 
.review-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: 'Inter', sans-serif;
}

.review-date {
    color: #6C757D;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-left: 16px;
}

.review-stars i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.review-stars i.bi-star {
    color: #DEE2E6;
}

.review-content {
    flex: 1;
}

.review-content p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #e9ecef;
}

.reviews-footer {
    display: flex;
    justify-content: center;
}

.btn-view-all {
    background: var(--dark-grey);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-view-all:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 30px;
    font-weight: 700; 
    margin: 0 auto !important;
}

 

/* Custom 5-column Bootstrap grid */
.col-xl-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.0);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.product-card:hover {
    z-index: 10;     
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 0;
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 2;
    flex-wrap: wrap;
    width: calc(100% - 50px);
}

.product-badge {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.badge-top {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.badge-sale {
    background: var(--accent-red);
    color: white;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    border-radius: 7px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;

}

.favorite-btn:hover, .favorite-btn.active, .favorite-btn.selected {
    background: var(--accent-red);
    color: white;
    transform: scale(1.1);
}

 .favorite-btn i {
     font-size: 14px;
 }
 
 .favorite-icon {
     width: 19px;
     height: 19px;
     filter: saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(340deg) brightness(69%) contrast(119%);
     transition: all 0.3s;
 }
 
 .favorite-btn:hover .favorite-icon, .favorite-btn.selected .favorite-icon {
    filter: brightness(100);
 }

.product-image {
    margin: 20px 0 14px 0;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.product-info {
    flex-grow: 0;
}

.product-title a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.product-title a:hover {
    color: var(--accent-red);
}

.product-price {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-price {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: block;
}

.old-price {
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
}

.product-actions {
    display: flex;
    gap: 5px;
}

.btn-buy {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    flex-grow: 1;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-buy:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    color: var(--text-light);
}

 .btn-buy i {
     font-size: 12px;
 }
 
 .btn-buy .cart-icon {
     width: 23px;
     height: 23px;
     filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.4) contrast(1);
     transition: all 0.3s;
 }
 
 .btn-buy:hover .cart-icon {
     filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
 }

.btn-quick-view {
    background: white;
    border: 2px solid var(--accent-red);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    opacity: 1;
}

.btn-quick-view:hover, .btn-quick-view.selected {
    background: var(--accent-red);
    transform: translateY(-2px);
    opacity: 1;
}
.btn-quick-view.selected {
    transform: translateY(0px);
    border: 2px solid var(--accent-red);
}
.rocket-icon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(340deg) brightness(69%) contrast(119%);
    transition: all 0.3s;
}
.add-fav-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(340deg) brightness(69%) contrast(119%);
    transition: all 0.3s;
    opacity: 1;
}

.btn-quick-view:hover .rocket-icon, .btn-quick-view:hover .add-fav-icon, .btn-quick-view.selected .add-fav-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
}




.brands-column {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.brand-item {

    border-radius: 8px;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 95px;
    object-fit: contain;
    transition: all 0.3s;
}

.brand-logo:hover {
    transform: translateY(-5px);
}
.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.category-block {
    background: var(--light-grey);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.category-block:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/tex1.webp);
    background-repeat: no-repeat;
    background-size: auto 230px;
    background-position: bottom center;
    z-index: 0;
    filter: saturate(0);
    opacity: 0.3;
    transition: all 0.24s;
}

.category-block:hover:before {
    filter: saturate(1);
    opacity: 1;
 
}

.category-block:hover {
    background: var(--primary-yellow) !important;
    transform: translateY(-5px);
    
}

.category-block:hover  .category-img {
    transform: scale(1.1);

}


.category-block.commercial-tires {
    background: var(--light-grey);   
}

.category-block.passenger-tires {
    background: var(--light-grey);
}

.category-block.wheels {
    background: var(--light-grey);
}

.category-block.oils {
    background: var(--light-grey);
}

.category-block.commercial-tires:before {
    background-image: url(../images/tex1.webp);
}
.category-block.passenger-tires:before {
    background-image: url(../images/tex2.webp);
}       
.category-block.wheels:before {
    background-image: url(../images/tex3.webp);
}
.category-block.oils:before {
    background-image: url(../images/tex4.webp);
}



.category-content {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.category-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.category-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.category-link:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

 
.category-img {
    max-width: 300px;
    height: auto; 
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    transition: all 0.3s;
}
.category-img img {
    width: 100%;
    height: auto;
    
}
.benefit-card {
    text-align: left;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    align-items: start;
    gap: 15px;
}

.benefit-icon {
    width: 100px;
    height: 100px;

}

.benefit-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.benefit-title, h1 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 8px;
    display: block;
    width: fit-content;
    z-index: 10;
}

.benefit-title::after, h1::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 13px;
    background-image: url(../images/line-yellow.svg);
    background-repeat: repeat-x;
    background-size: auto 13px;
    background-position: center;
    z-index: -1;
    display: block;
 
}

.benefit-description {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    flex-grow: 1;
}





/* Contact Cities Section */
.footer-contact-cities-section {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1002;

}

.footer-contact-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    color: #fff;
    justify-content: end;
}

.footer-contact-cities .city-phone {
    color: var(--text-light);
}
.footer-contact-cities .city-phone:hover {
    color: var(--accent-red);
}

.footer-contact-cities .city {
    font-size: 15px;
    color: #ffffff7d;
    font-weight: 400;
    transition: color 0.3s;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}
.footer-contact-cities .city-item:hover .city  {
    color: #ffffffe9;
}

.footer-contact-cities .city-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 6px;
}

.footer-contact-cities .city-item:hover {
    background: rgb(255 255 255 / 5%);
    transform: translateY(-1px);
}


@media (max-width: 1430px) {
    .search-input {     
    padding: 0 10px 0 45px;
    width: 200px;   
    }
}


.info-links {
    margin-right: 20px;
}





/* Responsive Design */
@media (max-width: 1470px) {
    .info-links {
        display: none !important;
    }
    
    .nav-info-dropdown {
        display: block !important;
    }
    
    .contacts-link {
        display: block !important;
    }

    .current-price {     
        font-size: 22px;
    }
    .old-price {
        font-size: 16px;
    }

}

@media (max-width: 992px) {
    /* Hide desktop navbar and show mobile header */
    .navbar {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
    }
    
    /* Hide top-bar on mobile */
    .top-bar {
        display: none !important;
    }
    .tire-selection-card {
        border-radius: 8px;        
    }
    .special-offer-card {
        border-radius: 8px;
        margin-top: 20px;
    }
    
    /* Mobile sticky header spacer */
    .sticky-spacer {
        height: 60px;
    }

    .footer-contact-cities {
        justify-content: center;
    }
 
}

@media (min-width: 1471px) {
    .nav-info-dropdown {
        display: none !important;
    }
    
    .contacts-link {
        display: none !important;
    }

 

}

@media (max-width: 1360px) {
    .contact-cities {
        display: none !important;
    }
    
    .cities-dropdown {
        display: block !important;
    }
    
    .cities-dropdown .dropdown-menu {
        min-width: 350px;
    }
    .contact-cities-section {
        justify-content: start;
    }
    .fav-icon img, .cart-icon img {
        width: 36px;
        transition: all 0.2s;
    }
    .fav-icon, .cart-icon {
        width: 46px;
    }
    .logo-section {
        width: 90px;
    }
    .logo-img {
        width: 100%;
    }
    .contact-cities-section {
        width: 100%;
    }
    .search-input { 
        width: 300px;
    }
    .second-actions-row {
        margin-top: 0;
    }
    .product-price {
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
    }
}

@media (max-width: 1500px) {
    .city {
        font-size: 14px;
    }
    .city-phone {
        font-size: 14px;
    }
}



@media (max-width: 1380px) {
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefit-title {
        margin:0 auto;
    }
}

@media (max-width: 1260px) {
    .offer-image img {
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .top-bar-container {
        padding: 0 15px;
        gap: 20px;
    }
}
@media (max-width: 1048px) {
    .category-icon {
        width: 24px;
        height: 24px;
        transition: all 0.2s;
    }
    .navbar-nav {
        gap: 10px 15px;
    }
}

@media (max-width: 1199px) {
    .category-block {
        height: 160px;
        margin-bottom: 10px;
    }
    .category-img {
        max-width: 175px;
    }
    .categories-grid {
        gap: 0;
    }
    
    /* Sales Hits Tablet */
  
    .product-title {
        font-size: 13px;
        min-height: 34px;
    }
    
    .current-price {
        font-size: 17px;
    }
    
    .btn-buy {
        padding: 9px 11px;
        font-size: 13px;
    }
    
    /* Reviews Tablet */
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 22px;
    }

}

@media (max-width: 992px) {

    
    .logo-section {
        width: 80px;
    }
    .logo-img {
        width: 100%;
    }
    .contact-cities-section {
        width: 100%;
    }
    
    .contact-cities {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .actions-section {
        min-width: auto;
        width: 100%;
    }
    
    .top-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fav-icon, .cart-icon {
        width: 34px;
    }
    .mobile-action-btn .badge {
        top: 3px;
        right: -1px;
    }

}

@media (max-width: 768px) {
    .contact-cities {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .city-item {
        padding: 6px 8px;
    }
    
    .city {
        font-size: 12px;
    }
    
 
    
    .top-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .search-input {
        width: 120px;
    }
    
    .phone-numbers {
        text-align: center;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .form-group {
        flex: 0 0 calc(50% - 6px);
        min-width: 0;
    }
    
    .form-group.diametr {
        flex: 0 0 100%;
        min-width: 0;
    }
    /* Третий ряд - Бренд занимает всю ширину */
    .form-row:last-child .form-group:last-child {
        flex: 0 0 100%;
    }
    
    .tire-selection-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .form-select {
        padding: 14px 16px;
    }
    
 

    .offer-title {

        margin-left: auto;
        margin-right: auto;
    }
    .offer-image img {
        width: 260px;
    }
    .special-offer-card:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 437px;
        height: 120px;
        background-image: url('../images/promo-button-bg.webp');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% 100%;
        z-index: 1;
    }
    .offer-title {
        color: var(--text-dark);
        font-size: 32px;
        font-weight: 300;
        margin-bottom: 39px;
        line-height: 1.1;
        font-family: 'Inter', sans-serif;
        max-width: 430px;
    }


    .benefits-section {
        padding: 60px 0;
    }
 
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
}

/* Responsive grid for product cards */
@media (max-width: 1199px) {
    .col-xl-2-4,
    .col-lg-2-4,
    .col-md-2-4 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

@media (max-width: 768px) {
    .col-xl-2-4,
    .col-lg-2-4,
    .col-md-2-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

@media (max-width: 600px) {
    .col-xl-2-4,
    .col-lg-2-4,
    .col-md-2-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 576px) {
    .tire-selection-card,
    .special-offer-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
 
    .form-row {
        gap: 12px;
    }
    
    .form-select {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .benefits-section {
        padding: 40px 0;
    }
  
     
    .benefit-title {
        font-size: 18px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
    .special-offer-card:before {
        width: 363px;
        height: 98px;
    }

    /* Brands and Categories Mobile */
    .brands-categories-section {
        padding: 40px 0;
    }
    
    .brands-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
 
    }
 
    .category-block {
        height: 150px;
        padding: 20px;
    }
    
    .category-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
         .category-img {
         max-width: 164px;
  
     }
     
     /* Sales Hits Mobile */
     .sales-hits-section {
         padding: 40px 0;
     }
     
     .section-title {
        font-size: 20px;
     }
     
     .btn-mini {
        padding: 4px 7px;
        font-size: 13px;
    }
     .product-title {
         font-size: 13px;
         min-height: 32px;
     }
     .btn-leave-review {
        background: var(--primary-yellow);
        color: var(--text-dark);
        border: none;
        border-radius: 5px;
        padding: 8px 15px;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }
     .current-price {
         font-size: 16px;
     }
     
     .old-price {
         font-size: 12px;
     }
     
     .btn-buy {
        padding: 7px 12px;
        font-size: 12px;
     }
     .btn-buy .cart-icon {
        width: 20px;
        height: 20px;
    }
     .btn-quick-view {
         width: 36px;
         height: 36px;
     }
     
     .rocket-icon {
        width: 17px;
        height: 17px;
    }
     
     /* Reviews Mobile */
     .reviews-section {
         padding: 40px 0;
     }
     
     .reviews-header {
         gap: 20px;
         margin-bottom: 30px;
     }
     
     .reviews-title {
         font-size: 28px;
     }
     
     .reviews-grid {
         grid-template-columns: 1fr;
         gap: 16px;
         margin-bottom: 30px;
     }
     
     .review-card {
         padding: 20px;
     }
     
     .reviewer-name {
         font-size: 16px;
     }
     
     .review-content p {
         font-size: 14px;
     }
     
     .btn-leave-review {
         align-self: flex-start;
     }
 }


 

/* Cargo Tires Section */
.text-section {
    padding: 80px 0;
    background: white;
}

.cargo-tires-content {
    padding: 40px;
    background: white;
    border-radius: 12px;
    height: 100%;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    font-family: 'Inter', sans-serif;
}

.cargo-tires-intro {
    margin-bottom: 32px;
}

.cargo-tires-intro p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cargo-tires-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    font-family: 'Inter', sans-serif;
}

.cargo-tires-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-marker {
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    border-radius: 3px;
    margin-top: 4px;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.benefit-content p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cargo-tires-cta p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Right Column - Dark Background */
.cargo-tires-features {
    background-color: #1a1a1a;
    background-image: url(../images/darktexture1.webp), url(../images/darktexture2.webp);
    background-size: auto 340px, auto 340px;
    background-position: top center, bottom center;
    background-repeat: no-repeat, no-repeat;
    padding: 90px;
    border-radius: 12px;
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px 0;
    font-family: 'Inter', sans-serif;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-around;
    height: calc(100% - 50px);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
     
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.feature-content p {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

/* Responsive styles for Cargo Tires Desktop */
@media (max-width: 1199px) {
    .text-section {
        padding: 60px 0;
    }
    
    .cargo-tires-content {
        padding: 30px;
    }
    
    .cargo-tires-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cargo-tires-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .cargo-tires-benefits {
        margin-bottom: 28px;
    }
    
    .benefit-item {
        margin-bottom: 20px;
    }
    
    .cargo-tires-features {
        padding: 70px;
    }
    
    .features-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    
    .features-list {
        gap: 28px;
    }
}

/* Responsive styles for Cargo Tires Mobile */
@media (max-width: 576px) {
    .text-section {
        padding: 40px 0;
    }
    
    .cargo-tires-content {
        padding: 24px;
    }
    
    .cargo-tires-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cargo-tires-intro {
        margin-bottom: 24px;
    }
    
    .cargo-tires-intro p {
        font-size: 15px;
    }
    
    .cargo-tires-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .cargo-tires-benefits {
        margin-bottom: 24px;
    }
    
    .benefit-item {
        margin-bottom: 16px;
        gap: 12px;
    }
    
    .benefit-marker {
        width: 10px;
        height: 10px;
        margin-top: 4px;
    }
    
    .benefit-content h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    .cargo-tires-cta p {
        font-size: 15px;
    }
    
    .cargo-tires-features {
        padding: 53px;
    }
    
    .features-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .features-list {
        gap: 24px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}


 



/* Available Sizes Section */
.available-sizes-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sizes-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #333;
    background-image: url(../images/darktexture2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.sizes-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.sizes-title {
    font-size: 17px;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Bootstrap Tabs Customization */
.sizes-tabs {
    border: none;
    gap: 0;
    padding: 6px;
    background: #b40000c2;
    border-radius: 8px;
}

.sizes-tabs .nav-item {
    margin: 0;
}

.sizes-tabs .nav-link {
    background: transparent;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 2px 10px 3px !important;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 8px;
}
.sizes-tabs .nav-link:hover {
    color: var(--text-light) !important;
}



.sizes-tabs .nav-link.active {
    background: #222222;
    color: white;
}

 
.sizes-tabs .nav-link:hover:not(.active) {
    background: rgba(220, 53, 69, 0.1);
    color: white;
}

/* Tab Content */
.tab-content {
    margin-top: 0;
}

.tab-pane {
    padding: 0;
}

/* Sizes Grid */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 7px;
    margin-top: 20px;
}

.size-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    background: url(../images/tag.svg) no-repeat center center;
    background-size: contain;
}

.size-item:hover {
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--primary-yellow);
}

/* Responsive styles for Available Sizes Desktop */
@media (max-width: 1199px) {
    .available-sizes-section {
        padding: 60px 0;
    }
    
    .sizes-container {
        padding: 30px;
    }
    
    .sizes-header {
        margin-bottom: 30px;
    }
    
    .sizes-title {
        font-size: 24px;
    }
    
    .sizes-tabs .nav-link {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .size-item {
        font-size: 13px;
        padding: 10px 14px;
        min-height: 44px;
    }
}

/* Responsive styles for Available Sizes Mobile */
@media (max-width: 576px) {
    .available-sizes-section {
        padding: 40px 0;
    }
    
    .sizes-container {
        padding: 20px;
    }
    
    .sizes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .sizes-title {
        font-size: 20px;
    }
    
    .sizes-tabs {

        justify-content: space-between;
        white-space: nowrap;
    }
    
    .sizes-tabs .nav-item {
        width: 100%;
    }
    
    .sizes-tabs .nav-link {
        font-size: 14px;
        padding: 8px 12px;
        text-align: center;
        display: inline-block;
        width: 100%;

    }
    
    .sizes-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
        margin-top: 16px;
    }
    
    .size-item {
        font-size: 12px;
        padding: 8px 12px;
        min-height: 40px;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    padding: 80px 0 0 0;
}

.newsletter-banner {
    background: var(--primary-yellow);
    background-image: url(../images/tex3.webp);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: end;
    max-width: 1200px;
    margin: 0 auto;
}

 
.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
 
    z-index: 1;
}

.newsletter-image {
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    left: 56px;
}

.gift-image {
    width: 260px;
    height: auto;
    object-fit: contain;
 
}

.newsletter-text {
 
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-red);
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 18px;
    color: #8B4513;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
}

.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px 0 0 6px;
    padding: 4px 16px;
    min-width: 280px;
}

.email-icon {
    width: 27px;
    height: 27px;
    margin-right: 12px;
    flex-shrink: 0;
}

.email-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    width: 100%;
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
}

.email-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:active {
    transform: translateY(0);
}
.btn.bd-lr-0:hover {
    transform: none;
}
.bd-lr-0 {
    border-radius: 0 6px 6px 0;
}
 
/* Responsive styles for Newsletter Section */
@media (max-width: 1199px) {
    .newsletter-section {
        padding: 60px 0 0 0;
    }
    
    .newsletter-banner {
        padding: 50px 30px;
    }
    
    .newsletter-content {
        gap: 30px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 16px;
    }
    
    .email-input-wrapper {
        min-width: 240px;
    }
}

@media (max-width: 991px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .email-input-wrapper {
        width: 100%;
        min-width: auto;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 40px 0 0 0;
    }
    
    .newsletter-banner {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 20px;
    }
    
    .newsletter-subtitle {
        font-size: 14px;
    }
    
    .gift-image {
        width: 100px;
    }
    
    .email-input {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .subscribe-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 1240px) {
    .newsletter-image {
        display: none;
    }
    .newsletter-banner {
        justify-content: center;
    }

}

@media (max-width: 992px) {

    .email-input-wrapper {

        border-radius: 6px;
        padding: 4px 16px;
        min-width: 280px;
        margin-bottom: 8px;
    }
    .btn.bd-lr-0 {
        border-radius: 6px;
    }

}

/* Footer Styles */
.footer {
    background: var(--dark-grey);
    background-image: url(../images/darktexture2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 0 0;
    position: relative;
}
.footer::before{
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: 1;
    background-image: url(../images/line.svg);
    background-size:  auto 13px;
    background-repeat: repeat-x;
    background-position: center;
}
 

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px; 
}

.footer-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.footer-title {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    color: var(--light-grey);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.contact-value {
    color: var(--light-grey);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-link:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: var(--accent-red);
    text-decoration: none;
    transform: translateX(5px);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(12%) sepia(83%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #222222;
    margin-bottom: 0;
    
}

.copyright {
    color: #ffffff8c;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    font-family: 'Inter', sans-serif;
    
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 991px) {
 
    
 
    
    .social-links {
        flex-direction: row;
        gap: 20px;
    }
    
    .social-link {
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
}

@media (max-width: 767px) {
 
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
 
    
    .social-link {
        font-size: 13px;
    }
    
    .copyright,
    .footer-bottom-link {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        gap: 10px;
    }
}

@media (max-width: 576px) {

    .footer-logo {
        width: 100px;
        margin-bottom: 15px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .contact-value,
    .footer-link {
        font-size: 14px;
    }
    
    .social-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .copyright,
    .footer-bottom-link {
        font-size: 12px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

.sticker__image {
    display: inline-block;
    width: 100%;
    max-height: inherit;
}
.sticker--special {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 98px;
    -ms-flex: 0 0 98px;
    flex: 0 0 98px;
    max-width: 98px;
    width: 98px;
}
.sticker {  
    padding: 0;
}
.product_item  {
    height: auto !important;
}
.fn_product {
    height: 100%;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -7px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #b40000;
}
.swiper-wrapper {
    padding: 0 0 30px;
}

.breadcrumbs {
    margin-bottom: 20px;
    background: linear-gradient(to right, #f5f5f5, #ffffff00);
    padding: 4px 15px;
    border-radius: 5px;

}

.breadcrumbs .breadcrumbs__item {
    padding: 0;
    color: #9F9F9F;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}
.breadcrumbs a {
    font-weight: 400;
    color: #474747;
}
.breadcrumbs .breadcrumbs__item + .breadcrumbs__item:before {
    padding: 0 10px;
    content: "→";
    font-size: 15px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.breadcrumbs a:hover {
    font-weight: 400;
    color: var(--accent-red);
    text-decoration: none;
}

.fn_product h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}
.fn_product h1::after, .products_container h1::after {
    display: none;
}
.product-page__images {
    margin-left: 0;
}
.product-page__images-item {
    width: 75px;
    height: 75px !important;
    border: 2px solid #f4f4f4;
    border-radius: 7px;
}
.product-page__images-item picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-page__images-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide-thumb-active {
    border: 2px solid var(--primary-yellow);
}
.product-page__img .swiper-slide img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
}
.hidden-xs-up {
    display: none !important;
}
.details_boxed {
    background-color: transparent;
    overflow: visible;
    padding: 0 0 0 50px;
}
.details_boxed__item {
    position: relative;
    border-bottom: none;
    padding: 0;
    background-color: transparent;
}
.product-features {
    height: 100%;
    padding: 0 20px;
}
.product-features .features__item {
    padding: 0;
}
.features__wrap {
    border-bottom: 2px dotted #dbdbdb;
    padding: 0 0 13px;
    margin-bottom: 14px;
}
.features__name, .features__value {
    font-size: 16px;
    color: #787878;
}
.features__value {
    color: #202020;
}
.gallery_image a {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100% !important;
    max-height: 460px;
}
.gallery_image picture {
    height: 100%;
}


.stickers_product-page {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    left: 2px;
    top: 1px;
}
.product-badge.sticker--discount {
    background: var(--accent-red);
    color: #fff;
}
.product-section .swiper-wrapper {
    padding: 0; 
}
.product-features__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.details_boxed__brand {
   min-width: 80px;
   position: relative; 
   text-align: left;
   top: 0;
   left: 0;
   margin-bottom: 30px;
}
.block__header--boxed .block__header_promo {
    background: #fff;
    border-radius: 6px;
    right: 0;
    top: 2px;
    padding: 3px 7px;
    border: 1px dashed #a9a9a9;
}
.anchor_comments__link {
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--accent-red);
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f1f1f1;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--accent-red);
    color: var(--text-light);
}

.details_boxed_pct {
    position: relative;
    top: 0px;
    left: 0;
    display: inline-block;
    text-align: center;
    line-height: 1;
    background-color: rgb(180 0 0);
    color: rgb(255 255 255);
    font-weight: 600;
    padding: 5px 9px;
    font-size: 15px;
    border-radius: 5px;
}

.product-section .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-section .details_boxed__select .select2-selection--single {
    height: 27px !important;
}
.product-section .details_boxed__select .select2-selection__arrow {
    height: 26px !important;
}
 .product-section .details_boxed__select .select2-selection__rendered {
     line-height: 25px !important;
 }

/* Variant Buttons */
.variant-buttons {
     margin-bottom: 20px;
 }

.variant-buttons__title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
 }

.variant-buttons__list {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

.variant-btn {
     border: 2px solid var(--accent-red);
     background: transparent;
     color: var(--accent-red);
     padding: 5px 13px;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

.variant-btn:hover, .variant-btn:focus, .variant-btn:focus-visible {
     background: var(--accent-red);
     color: white;
     text-decoration: none;
     border: 2px solid var(--accent-red);
 }

.variant-btn.active {
     background: var(--accent-red);
     color: white;
     border-color: var(--accent-red);
 }

.variant-btn:focus {
     outline: none;
     box-shadow: none;
 }
 .accordion {
    background: #FAFAFA;
    padding: 9px 28px 22px 28px;
    border-radius: 9px;
 }
 .accordion__header {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    user-select: none;
    padding: 0;
 
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 10px 0 0 0;
}
.accordion__title {
    color: #616161;
}
.accordion__title.active {
    color: #1F1F1F;
}

ul.list, .list ul, .page-section ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
ul.list li, .list ul li, .page-section ul li {
    position: relative;
    padding-left: 15px;
}
ul.list li:before, .list ul li:before, .page-section ul li:before {
    content: "";
    background-color: var(--primary-yellow);
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;   
    border-radius: 3px;
    margin-right: 11px;
}
.page-section a {
    text-decoration: none;
    color: #222;
}
.page-section a:hover {
    color: var(--accent-red);
}
.br15 {
    border-radius: 15px;
    overflow: hidden;
}
iframe {
    border-radius: 15px;
    overflow: hidden;
}


.warranty-icon {
    margin-right: 4px;
    width: 17px;
    height: 17px;
}
.add-to-cart-btn {
    font-weight: 500;
}
.add-to-cart-btn img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.product-page__button--preloader:hover, .product-page__button--preloader:focus {
    background: #fedd2d;
    border-color: #fcde2b;
    color: #222222;
}
.details_boxed__amount {
    margin-right: 8px;
}

footer ul.list li:before  {
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background-color: var(--accent-red);
}
footer ul.list li {
    margin-right: 20px;
}


@media (max-width: 1400px) {
    .features__name, .features__value {
        font-size: 15px; 
    }
    .product-features {
        height: 100%;
        padding: 0 3px;
    }
    .details_boxed {
        padding: 0 0 0 20px;
    }
    .features__wrap {
        border-bottom: 2px dotted #dbdbdb;
        padding: 0px 0 10px;
        margin-bottom: 10px;
    }
 

}
@media (max-width: 1300px) {
    .amount {
        max-width: 120px;
    }
    .amount__input {
        width: 35px;
    }

}
@media (max-width: 991px) {
    .footer-contact-address {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .ps-30 {
        padding-left: 30px;
    }
    .details_boxed {
        padding: 0;
    }

}

@media (max-width: 576px) {
    .add-fav-icon {
        width: 20px;
        height: 20px;
    }
    .details_boxed {
        padding: 0 0 0 0;
    }
    .block--boxed {
        box-shadow: none;
        padding: 0;
    }
    .add-to-cart-btn img {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    } 
    .product-page__button {
        font-size: 15px;
    }
    .amount {
        max-width: 110px;
    }
    .amount__input {
        width: 30px;
    }
    .breadcrumbs {
        margin-bottom: 0;
    }

    .comment-wrap {
        padding: 15px 18px 19px 18px !important;
    }
 
    .form--boxed {
        padding: 20px 21px;
        box-shadow: none;
    }
 
}

@media (min-width: 1200px) {
    .hidden-xl-up {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;   
    }
    .overflow-md-hidden {
        overflow: hidden !important;
    }
}

.product_description {
    padding: 0 15px;
}
.comment-wrap {
    padding: 35px 40px 42px 40px;
    border: 1px solid #ededed;
    border-radius: 15px;
    height: fit-content;
}
.comment-wrap .headline {
    font-size: 22px;
    font-weight: 600;
}
.product-row {
    border: 1px solid #dddddd;
    border-radius: 13px;
    padding: 19px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 50px;
}
.product-page__tabs {
    margin-right: 0px;
    margin-left: 0px;
}
#features {
    margin-bottom: 50px;
}
#comments {
    margin-bottom: 50px;
}

.product-section .swiper-pagination-fraction, .product-section .swiper-pagination-custom, .product-section .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0px;
    left: 0;
    width: 100%;
}
.product-section .fn_products_slide .swiper-wrapper {
    padding-bottom: 28px;
}
.product_item .product-image {
    transition: all 0.3s ease;
}
.product_item:hover .product-image {
    transform: scale(1.08);
}

.popup {
    padding: 50px !important; 
    box-shadow: none !important;
    width: 600px !important;
    max-width: 100%;
    text-align: center !important;
    background: #F5F5F5;
    background-image: url(../images/texture1.webp);
    background-size: auto 600px;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 30px;
}

.categorie-section .sidebar {
    background: #F9F9F9;
    border: 1px solid #EDEDED;
    padding: 15px 15px 15px 18px;
    border-radius: 14px 0 0 14px;
}
.categorie-section h1 {
    font-size: 2.3rem;
}
.filter__catalog_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.filter__catalog_item {
    background: transparent;

}
.blog_catalog__switch, .blog_catalog__link, .filter__catalog_link {
    background: var(--primary-yellow) !important;
    border-radius: 4px !important;
    padding: 7px 8px !important;
}
.blog_catalog__switch:hover, .blog_catalog__link:hover, a.filter__catalog_link:hover,.filter__catalog_link.selected {
    background: var(--accent-red) !important;
    color: #ffffff !important;
}
.text-box {
    font-size: 15px;
}

@media (max-width:767px) {
    .pagination__link {
        display: block;
        padding: 0;
        min-width: 34px;
        text-align: center;
        text-decoration: none;
        border: none;
        background-color: #F6F6F6;
        color: #222;
        font-size: 13px;
        font-weight: 500;
        border-radius: 10px;
        height: 34px;
        line-height: 34px;
    }
}

.filter__link .filter__checkbox svg {
    height: 20px;
    opacity: 1;
    width: 19px;
    top: 0px;
    position: absolute;
    left: -1px;
}
.filter__link .filter__checkbox {
    transition: border-color 0.3s;
    border-radius: 4px;
    border: 2px solid #dbdbdb;
    display: block;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
}
.filter__link.checked .filter__checkbox {
    border-color: #ffd11d;
    background: #ffd11d;
}
.filter__link.checked .filter__checkbox svg {
    filter: brightness(0);
}
.filter__link.checked .filter__label {
    color: #000000;
}
.filter__link .filter__label {
    display: block;
    line-height: 22px;
    color: #808080;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
}

.filter__link:hover .filter__checkbox {
    border-color: #ffd11d;
}
.filter__link:hover .filter__label {
    color: #4b4b4b;
}
.filter__selected_feature .filter__sf_link:hover {
    border-color: #dbdbdb;
}
.sidebar_card__link, .browsed__link {
    border-color: #dedede;
    border-radius: 5px;
    border-width: 2px;
}
.sidebar_card__link:hover, .browsed__link:hover {
    box-shadow: none;
    border-color: var(--primary-yellow);
}
.product_sort__link.active_down, .product_sort__link.active_up {
    color: #b40000;
    border: 2px solid #b40000;
}
.product_sort__link:not(.active_down):hover, .product_sort__link:not(.active_up):hover {
    color: #b40000 !important;
    border-color: #bebebe !important;
}
.purchase__name .purchase__name_link:hover {
    color: #d60818;
}
.form__button--border:active, .form__button--border:hover, .form__button--border:focus {
    background: transparent;
    border-color: transparent;
    color: #b20000 !important;    
}
.form__button--border {
    font-size: 14px;
}
.purchase_details {
    background: #FAFAFA;
    border-radius: 10px;
    border: 1px solid #EDEDED;
    padding: 20px 25px;
}
.block--cart_purchases {
    padding: 28px 30px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
}
.form_cart {
    padding: 28px 25px 20px 25px;
    border-radius: 12px;
    border: 1px solid #EDEDED;
}
.filter__link.checked .filter__checkbox {
    border-color: #ffd11d;
    background: #ffd11d;
}
.checkbox.active .checkbox__icon {
    border-color: #ffd623;
    border: 2px solid #ffd623;
    background: #ffd623;
}
.checkbox:hover .checkbox__icon {
    border-color: #ffd623;
    border: 2px solid #ffd623;
}
.checkbox__icon {
    border: 2px solid #dbdbdb;
}

/* <div class="checkbox-wrapper">
  <input class="tgl tgl-flat" id="cb4-9" type="checkbox"/>
  <label class="tgl-btn" for="cb4-9"></label>
</div> */

 
  .checkbox-wrapper input {
    display: none;
  }
  .checkbox-wrapper input,
  .checkbox-wrapper input:after,
  .checkbox-wrapper input:before,
  .checkbox-wrapper input *,
  .checkbox-wrapper input *:after,
  .checkbox-wrapper input *:before,
  .checkbox-wrapper input + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper input::-moz-selection,
  .checkbox-wrapper input:after::-moz-selection,
  .checkbox-wrapper input:before::-moz-selection,
  .checkbox-wrapper input *::-moz-selection,
  .checkbox-wrapper input *:after::-moz-selection,
  .checkbox-wrapper input *:before::-moz-selection,
  .checkbox-wrapper input + .tgl-btn::-moz-selection,
  .checkbox-wrapper input::selection,
  .checkbox-wrapper input:after::selection,
  .checkbox-wrapper input:before::selection,
  .checkbox-wrapper input *::selection,
  .checkbox-wrapper input *:after::selection,
  .checkbox-wrapper input *:before::selection,
  .checkbox-wrapper input + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper input + .tgl-btn {
    margin-left: 3px;
    outline: 0;
    display: block;
    width: 45px;
    height: 24px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper input + .tgl-btn:after,
  .checkbox-wrapper input + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper input + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper input + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper input:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper input + .tgl-btn {
    padding: 2px;
    transition: all 0.2s ease;
    background: #fff;
    border: 2px solid #cfcfcf;
    border-radius: 2em;
  }
  .checkbox-wrapper input + .tgl-btn:after {
    transition: all 0.2s ease;
    background: #cfcfcf;
    content: "";
    border-radius: 1em;
  }
  .checkbox-wrapper input:checked + .tgl-btn {
    border: 2px solid #ffd11d;
  }
  .checkbox-wrapper input:checked + .tgl-btn:after {
    left: 50%;
    background: #ffd11d;
  }

  .delivery__description p:last-of-type {
    margin-bottom: 15px;
  }
  .sizes-tabs .nav-item:last-child .nav-link { 
    margin-right: 0;
}
.tire-type-btn.active, .tire-type-btn:hover, .tire-type-btn:focus, .tire-type-btn:active{
    background: var(--accent-red) !important;
    color: #fff;
    transform: none;
}
.tire-type-btn.active {
    pointer-events: none;
}
 
#subscribe_email-error {
    position: absolute;
    bottom: 1px;
    left: 56px;
}
.subscribe_success {
    position: absolute;
    bottom: 1px;
    left: 56px;
}
.subscribe_success {
    color: rgb(0 188 65);
}
.grecaptcha-badge {
    right: -450px !important;
}
.fn_validate_callback .form__title {
    position: relative;
    z-index: 555;
}
.fn_validate_callback .form__header {
    position: relative;
    z-index: 55;
}
.fn_validate_callback .form__title {
    position: relative;
    top: 16px;
}
.mini-link:hover {
    color: var(--accent-red) !important;
}
.mini-link:hover span {
    color: var(--accent-red) !important;
}
.form__button.button--blick {
    color: #fff;
}
.tabs__navigation--user .tabs__link.selected {
    color: #b40000;
}
.button__logout:hover {
    color: #b40000;
}
@media screen and (max-width: 768px) {
    .tabs__navigation.tabs__navigation--user {
        display: none;
    }
    .mobile_tab__content {
        display: none;
    }
    #user_info .mobile_tab__content {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .user_tab__switch {
        pointer-events: none;
    }
}
 .mobile_tab__content {
    margin-top: 30px;
 }
 .comment__boxed a {
    color: var(--accent-red);
 }
#fn_fast_order .form__header {
    position: relative;
    z-index: 55;
}
#fn_fast_order .form__title {
    display: block;
    margin: 0 auto;
    position: relative;
    width: fit-content;
    padding: 7px 20px;
    top: 19px;
}
#fn_pop_up_cart_wrap {
    padding: 50px !important;
    box-shadow: none !important;
    width: 600px !important;
    max-width: 100%;
    text-align: center !important;
    background: #F5F5F5;
    background-image: url(../images/texture1.webp);
    background-size: auto 600px;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 30px;
}
.purchase__image {
    background: #fff;
}
.purchase__item {
    margin-bottom: 10px;
    padding: 7px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}