@import url("../css/category.css");
@import url("../css/product.css");
@import url("../css/brand.css");

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: all .3s ease;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    width: 100%;
    display: block;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.myservice__container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 15px;
}

/* -------- section__slider -------- */
.slaider-item {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slaider-content {
    height: 100%;
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slaider-title {
    margin: 0 0 20px;
}

.slaider-title h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    background-color: #25c0ff;
    padding: 8px 20px;
    display: inline-block;
    text-transform: uppercase;
}

.slaider-desc span {
    color: #fff;
    font-size: 17px;
    padding: 8px 20px;
    display: inline-block;
    background-color: #20309f;
    font-family: "Ubuntu", sans-serif;
}

.slaider-desc span.span_bold {
    font-weight: bold;
}

.slaider-desc span ul {
    display: flex;
    gap: 10px;
    margin: 14px 0 8px;
}

.slaider-desc span ul li a i {
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
}

.slaider-btn {
    margin: 40px 0 0;
}

.default_btn {
    background: #25c0ff;
    color: #fff;
    padding: 12px 20px;
    transition: .3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
}

.default_btn:hover {
    background: #20309f;
}

.slaider-inner .slick-btn {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
}

.slaider-inner .slaider-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    /*right: 0;
    left: 0;*/
}

.slaider-inner .slaider-dots li {
    margin: 0 5px;
}

.slaider-inner .slaider-dots li.slick-active button {
    /*background: #d93740;*/
    background: #20309f;
}

.slaider-inner .slaider-dots button {
    font-size: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 50%;
}

.slaider-inner .slaider-dots button:hover {
    /*background: #f2bf4c;*/
    background: var(--gradient-primary);
}

.form-email {
    background-color: rgba(0, 0, 0, .5);
    padding: 15px 20px 20px;
}

.form-email input {
    background: #f6f6f6;
    border: 1px solid #efefef;
    padding: 8px 13px;
    max-width: 400px;
    width: 100%;
    outline: none;
    margin: 0 0 10px;
}

.checkbox {
    text-align: left;
}

input.checkbox__choice {
    width: 17px;
    height: 17px;
    position: absolute;
    opacity: 0;
}

.checkbox__label {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 25px;
    line-height: 20px;
    color: #777;
    font-size: .875rem;
}

.slaider-desc span.checkbox__label {
    background: transparent;
    font-size: 14px;
}

.checkbox__label a {
    color: #d93740;
    text-decoration: underline;
}

.checkbox__label a:hover {
    text-decoration: underline;
}

.form-email .checkbox__label::before {
    top: 9px;
}

.checkbox__choice:checked + .checkbox__label::before {
    background-color: #d93740;
}

.checkbox__choice:checked + .checkbox__label {
    opacity: 1;
}

.form-email button {
    margin: 10px 0 0;
    transition: .3s ease;
}

.slaider-content__right {
    text-align: right;
}

.slaider-inner .slick-next,
.slaider-inner:hover .slick-next,
.slaider-inner .slick-prev,
.slaider-inner:hover .slick-prev,
.slaider-inner .slick-btn:hover::before {
    transition: .5s ease;
}

.slaider-inner .slick-next {
    right: 50px;
}

.slaider-inner .slick-prev {
    left: 50px;
}

.slaider-inner .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #fff;
    font-size: 35px;
    padding: 0 10px;
    background: #d93740;
    line-height: 35px;
    width: 40px;
    height: 40px;
}

.slaider-inner .slick-btn:hover::before {
    background: #fff;
    color: #000;
}

.slaider-inner .slick-next::before {
    content: "\f105";
}

.slaider-inner .slick-prev::before {
    content: "\f104";
}

/* -------- myservice__banner -------- */
.myservice__banner {
    background: url("../images/banner_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: 10px;
}

.myservice__banner-info {
    color: #3a3a3a;
    max-width: 570px;
    text-align: center;
    padding: 30px 15px 0;
}

.myservice__banner-info h3 {
    font-size: 25px;
    margin: 0 0 20px;
}

.myservice__banner-info p {
    font-size: 16px;
    margin: 0 0 30px;
}

.myservice__banner-btn a {
    font-size: 15px;
    padding: 15px 20px;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 5px;
}

.myservice__banner-btn a.btn-dark {
    background: #20309f;
    color: #fff;
}

.myservice__banner-btn a.btn-dark:hover {
    background: rgba(0, 32, 92, .10);
    color: #20309f;
}

.myservice__banner-btn a.btn-light {
    background: rgba(0, 32, 92, .10);
    color: #20309f;
}

.myservice__banner-btn a.btn-light:hover {
    background: #20309f;
    color: #fff;
}

/* -------- myservice__section -------- */
.myservice__section {
    padding: 40px 0;
}

.myservice__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #20309f;
    text-transform: uppercase;
}

/* Сетка 4 столбца, 3 ряда */
.myservice__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
}

/* Карточка услуги */
.myservice__item {
    background-color: #f5f7fa;
    border-radius: 12px;
    padding: 24px 12px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

/* Картинка */
.myservice__item img {
    /*max-width: 150px;
    height: 50px;
    margin: 0 0 15px;
    object-fit: contain;*/
    max-width: 300px;
    height: 200px;
    margin: 0 0 15px;
    object-fit: cover;
}

/* Текст */
.myservice__item p {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #25c0ff;
    margin: 0;
    user-select: none;
}

/* Эффект при наведении */
.myservice__item:hover {
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.25);
    transform: translateY(-6px);
    background-color: #e8efff;
    color: #4361ee;
}

.myservice__item:hover p {
    color: #20309f;
}

/* -------- bonuses__section -------- */
.bonuses__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

.bonuses__item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.bonuses__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background-color: #ddd;
}

.bonuses__icon {
    width: 80px;
    height: 50px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.bonuses__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #20309f;
}

.bonuses__desc {
    font-size: 14px;
    color: #25c0ff;
    line-height: 1.4;
    margin: 0;
}

/* -------- address__section -------- */
.address__container {
    display: flex;
    gap: 40px;
}

.address__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid #ddd;
    padding-right: 40px;
}

.address__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.address__img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.address__info {
    flex-grow: 1;
}

.address__title {
    font-weight: 600;
    font-size: 27px;
    margin: 0 0 5px;
    color: #20309f;
    text-transform: uppercase;
}

.address__phones a {
    color: #25c0ff;
    text-decoration: none;
    font-size: 23px;
    display: inline-block;
    margin: 10px 0 0;
    font-weight: 700;
}

.address__phones a:hover {
    color: #20309f;
}

.address__worktime {
    font-size: 13px;
    color: #666;
    margin: 4px 0 8px 0;
}

.address__show-map {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.address__show-map:hover {
    color: #1a73e8;
    text-decoration: underline;
}

.address__map {
    flex-basis: 50%;
    height: 320px;
}

.address__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* -------- myservice__slogan -------- */
.myservice__slogan {
    background: #f2bf4c;
    padding: 40px 15px;
}

.myservice__slogan p {
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
}

.myservice__advantages {
    background: #f0f0f0;
    padding: 20px 0;
}

.myservice__advantages-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.myservice__advantages-item {
    text-align: center;
}

.myservice__advantages-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.myservice__advantages-item h4 {
    font-size: 16px;
    min-height: 40px;
    margin: 0 0 10px;
}

/* -------- myservice__info-img -------- */
.myservice__info-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 0;
}

.myservice__info-img-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    border-radius: 5px;
}

.myservice__info-img-item-text h3 {
    font-size: 25px;
    margin: 0 0 10px;
}

.myservice__info-img-item-text p {
    font-size: 20px;
    margin: 0 0 30px;
}

.myservice__info-img-item-img img {
    max-width: 300px;
}

.myservice__info-img-item-text a:hover {
    background: #fff;
    color: #000;
}

.myservice__info-img-item1 {
    background: #f2bf4c;
}

.myservice__info-img-item2 {
    background: #a1ecec;
}

.myservice__heading {
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 0 20px;
}

.myservice__heading h2 {
    font-size: 26px;
    margin: 0 0 10px;
}

.myservice__heading p {
    font-size: 16px;
}

.myservice__heading::after {
    content: '';
    border-bottom: 2px solid #f2bf4c;
    display: block;
    position: absolute;
    bottom: -1px;
    width: 200px;
}

/* -------- myservice__shop-categories -------- */
.myservice__shop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 0 40px;
}

.myservice__shop-categories-item {
    background: #f5f5f5;
    text-align: center;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.myservice__shop-categories-img {
    margin: 0 0 20px;
}

.myservice__shop-categories-img img {
    max-width: 70px;
    margin: 0 auto;
}

.myservice__shop-categories-text a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.myservice__shop-categories-text a:hover {
    color: #f2bf4c;
}

/* -------- myservice__products -------- */
.myservice__products-item {
    position: relative;
    border-inline-end: 1px solid #e5e5e5;
    padding: 0 10px;
    margin: 0 0 5px;
}

.myservice__products-discount {
    position: absolute;
    top: 7px;
    left: 7px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.myservice__products-discount span {
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 20px;
    width: max-content;
}

.myservice__products-discount span.discount {
    background: #d93740;
    color: #fff;
}

.myservice__products-discount span.new {
    background: #f5f5f5;
}

.myservice__products-add-to {
    position: absolute;
    opacity: 0;
    right: -50px;
    transition: all .5s ease 0s;
}

.myservice__products-add-to a {
    margin: 0 0 7px;
    font-size: 15px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.myservice__products-add-to a:hover {
    color: #d93740;
}

.myservice__products-item:hover .myservice__products-add-to {
    opacity: 1;
    right: 3px;
}

.myservice__products-img {
    margin: 0 0 10px;
    text-align: center;
}

.myservice__products-img img {
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.myservice__products-title h3 {
    color: #777;
    font-weight: normal;
    margin: 0 0 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.myservice__products-title a {
    display: block;
    text-align: center;
    word-wrap: anywhere;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.myservice__products-title a h2 {
    color: cornflowerblue;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: normal;
    margin: 10px auto 0;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.myservice__products-title h2.head_prod_cart {
    color: #000;
    font-weight: normal;
    background: #f2bf4c;
    padding: 5px;
    margin: 0 0 10px;
    text-align: center;
    cursor: pointer;
}

.myservice__products-title h2.head_prod_cart:hover {
    color: #fff;
    background: yellowgreen;
}

.myservice__products-desc a {
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
}

.myservice__products-desc a:hover {
    color: #f2bf4c;
}

.myservice__products-star {
    margin: 0 0 10px;
}

.myservice__products-star span.icon-star-yellow {
    color: #f2bf4c;
}

.myservice__products-star span.icon-star-gray {
    color: #ccc;
}

.myservice__products-price {
    margin: 0 0 20px;
}

.myservice__products-price span {
    font-size: 16px;
}

.myservice__products-price span.price {
    color: #f2bf4c;
    margin: 0 5px 0 0;
}

.myservice__products-price span.old-price {
    color: #777;
    text-decoration: line-through;
}

.product-price-btn-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.myservice__products-btn .default_btn {
    background: bisque;
    color: #555;
    padding: 5px 12px;
    font-size: 16px;
}

.myservice__products-btn .default_btn:hover {
    background: yellowgreen;
    color: #fff;
}

.myservice__products-btn .price {
    opacity: 1;
    transition: all .5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myservice__products-btn .price span {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    background: #f2bf4c;
    padding: 2px 5px;
    border-radius: 3px;
}

.myservice__products-btn .price span.old-price {
    color: #888;
    font-size: 16px;
    background: none;
    text-decoration: line-through;
    padding: 0;
    margin: 0 5px 0 0;
}

.myservice__products-btn .price .domleks-open__cart {
    height: 35px;
    width: 35px;
    background: bisque;
    color: #000;
    border: none;
    cursor: pointer;
    margin: 0 0 0 10px;
    transition: all .2s ease-in-out;
}

.myservice__products-btn .price .domleks-open__cart:hover {
    background: yellowgreen;
    color: #fff;
}

.myservice__products-btn button:hover {
    background: #000;
    color: #fff;
}

.myservice__products .slick-btn {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
    opacity: 0;
}

.myservice__products .slick-next,
.myservice__products:hover .slick-next,
.myservice__products .slick-prev,
.myservice__products:hover .slick-prev,
.myservice__products .slick-btn:hover::before {
    transition: .5s ease;
}

.myservice__products .slick-next {
    right: -30px;
}

.myservice__products:hover .slick-next {
    right: 5px;
    opacity: 1;
}

.myservice__products .slick-prev {
    left: -30px;
}

.myservice__products:hover .slick-prev {
    left: 5px;
    opacity: 1;
}

.myservice__products .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #000;
    font-size: 20px;
    border: 1px solid #fff;
    background: #f2bf4c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myservice__products .slick-btn:hover::before {
    background: #d93740;
    color: #fff;
}

.myservice__products .slick-next::before {
    content: "\f178";
}

.myservice__products .slick-prev::before {
    content: "\f177";
}

/* -------- myservice__best-deal -------- */
.myservice__best-deal {
    margin: 50px 0 0;
    border: 2px solid #f2bf4c;
    border-radius: 5px;
    padding: 20px;
}

.myservice__best-deal .myservice__heading {
    text-align: center;
}

.myservice__best-deal .myservice__heading::after {
    content: none;
}

.myservice__best-deal-item {
    padding: 10px;
    border-left: 1px solid #e5e5e5;
    display: flex;
    gap: 20px;
}

.myservice__best-deal-slider .slick-current .myservice__best-deal-item {
    border-left: none;
}

.myservice__best-deal-photo {
    position: relative;
    width: 50%;
}

.myservice__best-deal-new {
    position: absolute;
    top: 0;
    left: 5px;
    pointer-events: none;
}

.myservice__best-deal-new span {
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 20px;
    background: #f5f5f5;
}

.myservice__best-deal-discount {
    position: absolute;
    top: -6px;
    right: 0;
    pointer-events: none;
}

.myservice__best-deal-discount span {
    background: #d93740;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -.5px;
    display: inline-block;
}

.myservice__best-deal-info {
    width: 50%;
}

.myservice__best-deal-info-title {
    margin: 0 0 10px;
}

.myservice__best-deal-info-title a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
}

.myservice__best-deal-info-title a:hover {
    color: #f2bf4c;
}

.myservice__best-deal-info-star {
    margin: 0 0 10px;
}

.myservice__best-deal-info-star span {
    font-size: 15px;
}

.myservice__best-deal-info-star span.icon-star-yellow {
    color: #f2bf4c;
}

.myservice__best-deal-info-star span.icon-star-gray {
    color: #ccc;
}

.myservice__best-deal-info-price {
    margin: 0 0 10px;
}

.myservice__best-deal-info-price span {
    font-size: 17px;
    font-weight: 600;
}

.myservice__best-deal-info-price span.price {
    color: #f2bf4c;
    margin: 0 5px 0 0;
}

.myservice__best-deal-info-price span.old-price {
    color: #777;
    text-decoration: line-through;
}

.myservice__best-deal-info-instock {
    margin: 0 0 10px;
}

.myservice__best-deal-info-progress {
    background: #f0f0f0;
    height: 6px;
    border-radius: 30px;
    margin: 0 0 10px;
}

.progress-bar {
    height: 6px;
    border-radius: 30px;
    width: 0;
    background-color: #f2bf4c;
}

.myservice__best-deal-info-counter {
    display: flex;
    gap: 8px;
}

.myservice__best-deal-info-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #f2f2f2;
    width: 45px;
    height: 45px;
    padding: 3px;
    border-radius: 5px;
}

.myservice__best-deal-info-counter-item span {
    font-size: 12px;
}

.myservice__best-deal-info-counter-item span.num {
    font-weight: 600;
}

.myservice__best-deal-slider .slick-btn {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
    opacity: 0;
}

.myservice__best-deal-slider .slick-next,
.myservice__best-deal-slider:hover .slick-next,
.myservice__best-deal-slider .slick-prev,
.myservice__best-deal-slider:hover .slick-prev,
.myservice__best-deal-slider .slick-btn:hover::before {
    transition: .5s ease;
}

.myservice__best-deal-slider .slick-next {
    right: -40px;
}

.myservice__best-deal-slider:hover .slick-next {
    right: -17px;
    opacity: 1;
}

.myservice__best-deal-slider .slick-prev {
    left: -40px;
}

.myservice__best-deal-slider:hover .slick-prev {
    left: -17px;
    opacity: 1;
}

.myservice__best-deal-slider .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #000;
    font-size: 20px;
    border: 1px solid #fff;
    background: #f2bf4c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myservice__best-deal-slider .slick-btn:hover::before {
    background: #d93740;
    color: #fff;
}

.myservice__best-deal-slider .slick-next::before {
    content: "\f178";
}

.myservice__best-deal-slider .slick-prev::before {
    content: "\f177";
}

/* -------- myservice__reviews -------- */
.myservice__reviews {
    margin: 40px 0;
}

.myservice__reviews .myservice__heading {
    border-bottom: none;
    text-align: center;
}

.myservice__reviews .myservice__heading::after {
    content: none;
}

.myservice__reviews-inner {
    padding: 25px 0;
    background: #f5f5f5;
}

.myservice__reviews-item {
    padding: 0 30px;
    border-left: 1px solid #e5e5e5;
}

.myservice__reviews-slider .slick-current .myservice__reviews-item {
    border-left: none;
}

.myservice__reviews-star {
    margin: 0 0 15px;
}

.myservice__reviews-star span {
    background: #f2bf4c;
    color: #fff;
    padding: 3px;
    font-size: 14px;
    line-height: 20px;
}

.myservice__reviews-text {
    margin: 0 0 15px;
}

.myservice__reviews-text p {
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    letter-spacing: .4px;
}

.myservice__reviews-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.myservice__reviews-author img {
    max-width: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.myservice__reviews-author p {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .4px;
}

.myservice__reviews-slider .slick-btn {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
    opacity: 0;
}

.myservice__reviews-slider .slick-next,
.myservice__reviews-slider:hover .slick-next,
.myservice__reviews-slider .slick-prev,
.myservice__reviews-slider:hover .slick-prev,
.myservice__reviews-slider .slick-btn:hover::before {
    transition: .5s ease;
}

.myservice__reviews-slider .slick-next {
    right: -30px;
}

.myservice__reviews-slider:hover .slick-next {
    right: 5px;
    opacity: 1;
}

.myservice__reviews-slider .slick-prev {
    left: -30px;
}

.myservice__reviews-slider:hover .slick-prev {
    left: 5px;
    opacity: 1;
}

.myservice__reviews-slider .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #000;
    font-size: 20px;
    border: 1px solid #fff;
    background: #f2bf4c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myservice__reviews-slider .slick-btn:hover::before {
    background: #d93740;
    color: #fff;
}

.myservice__reviews-slider .slick-next::before {
    content: "\f178";
}

.myservice__reviews-slider .slick-prev::before {
    content: "\f177";
}

/* -------- myservice__brands -------- */
.myservice__brands .myservice__heading {
    border-bottom: none;
    text-align: center;
}

.myservice__brands .myservice__heading::after {
    content: none;
}

.myservice__brands-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.myservice__brands-item img {
    max-width: 100px;
}

.myservice__clients-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.myservice__clients-item {
    font-size: 18px;
    text-transform: uppercase;
}

/* -------- myservice__latest-news-slider -------- */
.myservice__latest-news-slider {
    margin: 0 0 50px;
}

.myservice__latest-news-inner {
    padding: 20px 0;
    background: #f5f5f5;
}

.myservice__latest-news-item {
    padding: 0 20px;
    border-left: 1px solid #e5e5e5;
}

.myservice__latest-news-slider .slick-current .myservice__latest-news-item {
    border-left: none;
}

.myservice__latest-news-img {
    margin: 0 0 10px;
}

.myservice__latest-news-img a {
    display: block;
    overflow: hidden;
}

.myservice__latest-news-img img {
    height: 250px;
    object-fit: cover;
    transition: all .5s ease 0s;
}

.myservice__latest-news-img:hover img {
    transform: scale(1.05);
}

.myservice__latest-news-date {
    margin: 0 0 10px;
}

.myservice__latest-news-date span {
    color: #777;
}

.myservice__latest-news-title {
    margin: 0 0 10px;
}

.myservice__latest-news-title a {
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.myservice__latest-news-title a:hover {
    color: #f2bf4c;
}

.myservice__latest-news-link a {
    color: #f2bf4c;
    border-bottom: 1px solid;
    font-weight: 600;
    padding: 0 0 5px;
    font-size: 15px;
}

.myservice__latest-news-link a:hover {
    color: #d93740;
}

.myservice__latest-news-slider .slick-btn {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
    opacity: 0;
}

.myservice__latest-news-slider .slick-next,
.myservice__latest-news-slider:hover .slick-next,
.myservice__latest-news-slider .slick-prev,
.myservice__latest-news-slider:hover .slick-prev,
.myservice__latest-news-slider .slick-btn:hover::before {
    transition: .5s ease;
}

.myservice__latest-news-slider .slick-next {
    right: -30px;
}

.myservice__latest-news-slider:hover .slick-next {
    right: 5px;
    opacity: 1;
}

.myservice__latest-news-slider .slick-prev {
    left: -30px;
}

.myservice__latest-news-slider:hover .slick-prev {
    left: 5px;
    opacity: 1;
}

.myservice__latest-news-slider .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #000;
    font-size: 20px;
    border: 1px solid #fff;
    background: #f2bf4c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myservice__latest-news-slider .slick-btn:hover::before {
    background: #d93740;
    color: #fff;
}

.myservice__latest-news-slider .slick-next::before {
    content: "\f178";
}

.myservice__latest-news-slider .slick-prev::before {
    content: "\f177";
}

/* -------- myservice__our-shops -------- */
.myservice__our-shops {
    background: #f2bf4c;
    padding: 40px 15px;
}

.myservice__our-shops p {
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
}

.myservice__our-shops-wrapper {
    margin: 0 0 30px;
}

.myservice__our-shops-info {
    max-width: 1070px;
    margin: auto;
}

.myservice__our-shops-title h3 {
    font-size: 20px;
    margin: 40px 0 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.myservice__our-shops-title h4 {
    font-size: 18px;
    margin: 25px 0 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.myservice__our-shops-opt {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0 30px;
}

.myservice__our-shops-office p {
    font-weight: 600;
}

.myservice__our-shops-office p + p {
    margin: 5px 0 0;
}

.myservice__our-shops-contact {
    display: flex;
    flex-direction: column;
}

.myservice__our-shops-contact a {
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    color: #333;
}

.myservice__our-shops-contact a + a {
    margin: 5px 0 0;
}

.myservice__our-shops-contact a:hover {
    border-bottom: 1px solid #d93740;
    color: #d93740;
}

.myservice__our-shops-time {
    display: flex;
    flex-direction: column;
}

.myservice__our-shops-time p + p {
    margin: 5px 0 0;
}

.myservice__our-shops-map iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}

.myservice__our-shops-retail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 50px 40px;
    padding: 10px 0 30px;
    font-size: 15px;
    color: #333;
}

.myservice__our-shops-retail-item b {
    font-weight: 600;
}

.myservice__our-shops-retail-item a {
    color: #d93740;
    font-weight: 500;
}

.myservice__our-shops-retail-item a:hover {
    color: #f2bf4c;
}

/* -------- myservice__newslatter -------- */
.myservice__newslatter {
    background: #f2bf4c;
    padding: 30px 15px;
}

.myservice__newslatter-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.myservice__newslatter-info {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.myservice__newslatter-img span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #d93740;
    color: #fff;
    font-size: 29px;
    border-radius: 50%;
}

.myservice__newslatter-desc h2 {
    color: #000;
    margin: 0 0 5px;
    font-size: 25px;
    font-weight: 500;
}

.myservice__newslatter-desc p {
    color: #000;
    font-size: 16px;
}

.myservice__newslatter-form {
    width: 50%;
}

.form-subscribe {
    width: 100%;
    position: relative;
}

.form-subscribe input {
    width: 100%;
    padding: 12px 135px 12px 15px;
    border-radius: 5px;
    font-size: 15px;
    border: none;
    outline: 0;
}

.form-subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 5px 5px 0;
    font-size: 15px;
    background: #000;
    color: #fff;
    height: 100%;
    padding: 0 10px;
    font-weight: 600;
}

.form-subscribe button:hover {
    background: #d93740;
}

/* -------- myservice__footer -------- */
.myservice__footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 0;
}

.myservice__footer-inner {
    display: flex;
    gap: 15px;
    margin: 0 0 25px;
}

.myservice__footer-contacts {
    max-width: 350px;
    width: 100%;
}

.myservice__footer-contacts h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px;
}

.myservice__footer-contacts ul li {
    font-size: 15px;
}

.myservice__footer-contacts ul li + li {
    margin: 15px 0 0;
}

.myservice__footer-contacts ul li span {
    display: inline-block;
    width: 20px;
    /*color: #f2bf4c;*/
    color: #25c0ff;
}

.myservice__footer-contacts ul li a:hover {
    /*color: #f2bf4c;*/
    color: #25c0ff;
}

.myservice__footer-social {
    margin: 30px 0 0;
}

.myservice__footer-social a {
    /*background: #d93740;*/
    color: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 5px 0 0;
    position: relative;
}

.myservice__footer-social a:hover {
    color: #fff;
}

.myservice__footer-social a::before {
    content: "";
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0;
    width: auto;
    height: auto;
    background: none;
    position: absolute;
}

.myservice__footer-social a.icon-vk::before {
    content: "\f189";
}

.myservice__footer-social a.icon-paper-plane::before {
    content: "\f1d8";
}

.myservice__footer-social a.icon-facebook::before {
    content: "\f09a";
}

.myservice__footer-social a.icon-twitter::before {
    content: "\f099";
}

.myservice__footer-social a.icon-youtube-play::before {
    content: "\f16a";
}

.myservice__footer-social a.icon-instagram::before {
    content: "\f16d";
}

.myservice__footer-social a.icon-vk:hover {
    background: #3b5999;
}

.myservice__footer-social a.icon-paper-plane:hover {
    background: #00aced;
}

.myservice__footer-social a.icon-facebook:hover {
    background: #3b5999;
}

.myservice__footer-social a.icon-twitter:hover {
    background: #00aced;
}

.myservice__footer-social a.icon-youtube-play:hover {
    background: #cb2027;
}

.myservice__footer-social a.icon-instagram:hover {
    background: #cc2366;
}

.myservice__footer-menu {
    display: flex;
    gap: 15px;
    max-width: 1050px;
    width: 100%;
    padding: 0 0 0 90px;
    border-left: 1px solid #303030;
}

.myservice__footer-menu-item {
    width: 25%;
}

.myservice__footer-menu-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px;
}

.myservice__footer-menu-item ul li {
    font-size: 15px;
}

.myservice__footer-menu-item ul li + li {
    margin: 15px 0 0;
}

.myservice__footer-menu-item ul li a {
    display: inline-flex;
    gap: 7px;
}

.myservice__footer-menu-item ul li a span {
    color: #25c0ff;
}

.myservice__footer-menu-item ul li a:hover {
    /*color: #f2bf4c;*/
    color: #25c0ff;
}

.myservice__footer-basement {
    border-top: 1px solid #303030;
    padding: 20px 0;
}

.myservice__footer-basement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.myservice__footer-basement-copy {
    max-width: 1000px;
    font-size: 13px;
    line-height: 1.3;
}

.myservice__footer-img-requisites {
    max-width: 350px;
}

.myservice__footer-basement-img a {
    margin: 0 5px 10px 0;
}

.myservice__footer-basement-img a:hover {
    opacity: .8;
}

.myservice__requisites {
    font-size: 13px;
    line-height: 1.3;
}

/* -------- a#go-top -------- */
a#go-top {
    background: #20309f;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    height: 40px;
    width: 40px;
    right: 20px;
    bottom: 20px;
    z-index: 25;
}

a#go-top::after {
    /*content: '\f106';*/
    color: #fff;
    font-family: 'icomoon';
    font-size: 26px;
    position: absolute;
    top: 3px;
    left: 12px;
}

a#go-top:hover {
    background: #25c0ff;
}

/* -------- Меню для мобил -------- */
.header__btn-menu {
    display: none;
    width: 28px;
    height: 20px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.header__btn-menu span {
    position: absolute;
    width: 100%;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    background-color: var(--color-primary);
}

.header__btn-menu span:nth-child(1) {
    top: 0px;
}

.header__btn-menu span:nth-child(2),
.header__btn-menu span:nth-child(3) {
    top: 8px;
}

.header__btn-menu span:nth-child(4) {
    top: 16px;
}

.header__btn-menu.close-menu span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.header__btn-menu.close-menu span:nth-child(2) {
    transform: rotate(45deg);
}

.header__btn-menu.close-menu span:nth-child(3) {
    transform: rotate(-45deg);
}

.header__btn-menu.close-menu span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

/* -------- block_result -------- */
#block_result {
    display: none;
    position: absolute;
    z-index: 100000;
    top: 58px;
    right: auto;
    background: #fcfcfc;
    border: 1px solid #ccc;
    padding: 10px 15px;
    box-shadow: 5px 14px 20px rgba(0, 0, 0, .25);
    border-radius: 2px;
    max-width: 400px;
    max-height: 700px;
    width: 100%;
    overflow-y: scroll;
}

#block_result i {
    position: absolute;
    top: 0;
    right: 15px;
}

#block_result i::before {
    content: "\f00d";
}

div#block_result p strong:hover {
    cursor: pointer;
}

div#block_result p {
    margin: 0 0 5px 0;
}

div#block_result a {
    color: #555;
    font-size: 14px;
    font-weight: 400;
}

div#block_result a:hover {
    color: #f2bf4c;
}

.search_div_res_close {
    position: sticky;
    top: 0px;
    right: 23px;
    z-index: 10000;
    display: flex;
    justify-content: right;
}

.search_div_res_close span {
    color: red;
    font-size: 14px;
    cursor: pointer;
}

h1.search_phrase {
    font-size: 14px;
    margin: 15px 0;
    color: #b2b2b2;
    text-align: center;
}

.search_msg {
    color: #ff9900;
    font-size: 16px;
}

.plitkastore-category__product-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plitkastore-category__product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    border-bottom: 1px dotted #ccc;
}

.plitkastore-category__product-item:hover {
    background-color: #f9f9f9;
}

.plitkastore-category__product-img {
    margin-right: 15px;
}

.myservice__category__product-item-search {
    display: flex;
    gap: 10px;
    margin: 0 0 5px;
}

.myservice__category__product-item-search .myservice__category__product-img a {
    width: 50px;
    display: block;
}

.prod_img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.myservice__category__product-item-search .myservice__category__product-desc {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 5px;
}

.myservice__category__product-item-search .myservice__category__product-desc span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    background: yellow;
    padding: 2px 5px;
    border-radius: 3px;
    align-self: flex-end;
}

h2 {
    font-size: 16px;
    margin: 5px auto;
    font-weight: bold;
}

h2 a {
    text-decoration: none;
    color: #333;
}

/* -------- form_checkout -------- */
.domleks_form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.domleks_form_item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.domleks_form_item div {
    width: 48%;
}

.domleks_form_item div input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
}

.domleks_form_item div button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 2px;
}

/* -------- articles -------- */
.articles {
    margin: 0 0 40px;
}

.articles-img {
    float: left;
    margin: 0 20px 10px 0;
}

.articles-img img {
    max-width: 500px;
}

.articles-info p {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.8;
}

.articles-info ul,
.articles-info ol {
    margin: 0 0 5px;
}

.articles-info ul li,
.articles-info ol li {
    font-size: 16px;
    font-style: italic;
    margin: 5px 0 0;
}

.articles-info ul li::before,
.articles-info ol li::before {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    background: #f2bf4c;
    margin: 0 10px 0 0;
    border-radius: 50%;
    vertical-align: middle;
}

.clr {
    clear: both;
    height: 0;
    overflow: hidden;
}


/* -------- В корзине --------- */
.price .domleks-go_to_cart {
    height: 40px;
    width: 40px;
    background: #f2bf4c;
    color: #000;
    border: none;
    cursor: pointer;
    margin: 0 0 0 10px;
    transition: all .2s ease-in-out;
    font-size: 7px;
    text-align: center;
    align-content: center;
}

.counter-tovara-btn .domleks-go_to_cart {
    height: 26px;
    width: 95px;
    background: #f2bf4c;
    color: #000;
    border: none;
    cursor: pointer;
    margin: 0 0 0 10px;
    transition: all .2s ease-in-out;
    font-size: 14px;
    text-align: center;
    align-content: center;
}