/*.card-reviews span {
    color: red;
    position: absolute;
    top: -10px;
    right: -15px;
    background-color: #FFC83A;
    padding: 1px 5px;
    color: #000;
    font-size: 12px;
    border-radius: 50%;
}*/
.card-reviews span {
    color: red;
    position: absolute;
    top: -13px;
    right: -12px;
    background-color: #1E1F23;
    padding: 1px 7px;
    color: #fff;
    font-size: 12px;
    border-radius: 0 5px 0 5px;
}
.card-reviews {
    position: relative;
}

@media (min-width: 1200px) {

.card-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.card {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            background-color: #1E1F23;
            border-radius: 10px;
            overflow: hidden;
            width: 100%;
            grid-gap: 20px;
            max-width: 600px;
            height: 475px;

            padding: 20px;
        }

        .card-left {
            display: flex;
            flex-direction: column;
        }

        .card-image {
            position: relative;
            height: 370px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        
        .badge-top {
            background-color: rgba(28, 28, 28, 0.5);
            color: #FFC83A;
            padding: 8px;
            border-radius: 4px;
            font-size: 16px;
            display: flex;
            font-weight: bold;
            align-items: center;
        }
        .badge-pro {
            background-color: rgba(28, 28, 28, 0.5);
            color: #9C9A9C;
            padding: 8px;
            border-radius: 4px;
            font-size: 16px;
            display: flex;
            font-weight: bold;
            align-items: center;
        }
        .badge-top i, .badge-pro i {
            margin-right: 5px;
        }

        .card-footer {
            display: grid;
            grid-template-columns: 3fr 2fr;
            align-items: center;
            grid-gap: 10px;
            margin-top: 15px;
        }

        .card-social {
            display: flex;
            padding: 10px 5px;
            justify-content: space-around;
            background-color: #2A2B30;
            border-radius: 8px;

        }

        .social-icon {
            width: 32px;
            height: 32px;
            background-color: transparent;
            border-radius: 5px;
            border: 1px solid #535458;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #535458;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .social-icon.active {
            color: white;
            border: 1px solid #fff;
        }
        .social-icon:hover {
            color: white;
            border: 1px solid #fff;
        }

        .card-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            font-size: 14px;
            text-decoration: none;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            background-color: #2A2B30;
        }
        
.card-rating.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}

        .card-rating i {
            color: #FFD700;
            margin-left: 3px;
            font-size: 12px;
            display: inline-block;
        }
        .card-rating a {
            margin-left: 5px;
        }

        .card-rating .card-reviews i {
            font-size: 22px;
            color: #fff;
        }
        .card-rating p {
            font-size: 14px;
        }

        .card-right {
            color: white;
            display: block;
            position: relative;
        }
.verify-icon {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        margin-left: 3px;
        position: absolute;
        top: -10px;
        right: -10px;
}

        .card-phone {
            border: 1px solid #fff;
            padding: 8px;
            display: inline-block;
            border-radius: 8px;
            /*width: 80%;*/
            color: #fff;
            text-decoration: none;

        }
        .card-adress {
            background-color: #2A2B30;
            display: block;
            margin-top: 15px;
            border-radius: 8px;
            padding: 16px 15px;
            color: #E5B439;
            text-decoration: none;
        }
        .card-adress a {
            color: #E5B439;
            text-decoration: none;
        }
        .card-adress i {
            color: #fff;
        }
        .card-adress-mobile {
            background-color: #2A2B30;
            display: none;
            margin-top: 15px;
            border-radius: 8px;
            padding: 16px 15px;
        }
        .card-contact {
            margin-bottom: 15px;
        }

        

        .card-contact i {
            margin-right: 10px;
        }

        .card-params, .card-prices {
            background-color: #2A2B30;
            display: block;
            margin-top: 15px;
            border-radius: 8px;
            padding: 10px 15px;
        }

        .card-params div, .card-prices div {
            display: flex;
            justify-content: space-between;
            line-height: 27px;
            border-bottom: 1px solid #36373C;
        }
        .card-params div:last-child, .card-prices div:last-child {
            border-bottom: none;
        }
.home-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.9);
}

.home-modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 80%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#homeModalImage {
    width: auto;
    height: 90vh;
}

.home-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.home-prev, .home-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.home-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.home-prev {
    left: 0;
}

.home-prev:hover, .home-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.card-description {
    display: none;
}
.load-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
}
.load-more-container button {
    background-color: transparent;
    border: 1px solid #FFC83A;
    line-height: 40px;
    font-size: 16px;
    border-radius: 20px;
    color: #FFC83A;
    padding: 0 20px;
}
.hero {
    background: url('/assets/images/hero.png') no-repeat right -70px center;
    background-size: cover;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}


.hero-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.2;
    font-weight: normal;
}

.hero-title span {
    color: #FFD700;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    max-width: 900px;
    line-height: 1.4;
}
.about-section {
    margin-top: 60px;
    padding: 60px 0;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    margin-bottom: 50px;
}

.about-container {
    background-color: #1E1F23;
    border-radius: 10px;
    padding: 50px;
}

.about-title {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 80px;
    font-weight: normal;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.about-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #e0e0e0;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700;
}

.show-more {
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    margin-bottom: 30px;
}

.show-more:hover {
    text-decoration: underline;
}

.share-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    float: right;
    margin-top: -50px;
}

.share-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hidden-content {
    display: none;
}
}



























































































































.description-text {
    display: inline;
    color: #fff;
    text-align: left;
}
.description-text.truncated {
 /* Оставляем место для кнопки */
    display: inline-block;
}
.show-more {
    background: none;
    border: none;
    color: #FFD700; /* Золотистый цвет как на фото */
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    display: inline;
    text-decoration: none;
    margin-left: 4px;
}
.show-more:hover {
    text-decoration: underline;
}
.how-to-section {
    padding: 60px 0;
    color: #fff;
}

.how-to-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.how-to-title {
    font-size: 42px;
    margin-bottom: 40px;
    grid-column: 1 / -1;
    font-weight: normal;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 24px;
    left: 11px;
    top: 0;
}

.faq-icon::after {
    width: 24px;
    height: 2px;
    left: 0;
    top: 11px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.how-to-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-top: -120px;
    float: right;
}



























@media (max-width: 767px) {
.how-to-container {
        grid-template-columns: 1fr;
    }

    .how-to-title {
        font-size: 24px;
        text-wrap: nowrap;
    }

    .how-to-content {
        order: 1;
    }

    .how-to-image-container {
        order: 2;
        margin-top: 40px;
    }

    .how-to-image {
        margin: 0 auto;
        display: block;
    }
.card-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    max-width: 1200px;
    margin: 20px 15px;
}
.card {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            background-color: #1E1F23;
            border-radius: 10px;
            overflow: hidden;
            width: 100%;
            grid-gap: 10px;
            max-width: 600px;
            height: auto;

            padding: 10px;
        }
.card-description {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2A2B30;
    border-radius: 8px;
    padding: 10px;
    grid-column: span 2;
}
        .card-left {
            display: flex;
            flex-direction: column;
        }

        .card-image {
            position: relative;
            height: 270px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .badge-top {
            background-color: rgba(28, 28, 28, 0.5);
            color: #FFC83A;
            padding: 8px;
            border-radius: 4px;
            font-size: 16px;
            display: flex;
            font-weight: bold;
            align-items: center;
        }
        .badge-pro {
            background-color: rgba(28, 28, 28, 0.5);
            color: #9C9A9C;
            padding: 8px;
            border-radius: 4px;
            font-size: 16px;
            display: flex;
            font-weight: bold;
            align-items: center;
        }
        .badge-top i, .badge-pro i {
            margin-right: 5px;
        }

        .card-footer {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
            grid-gap: 10px;
            margin-top: 19px;
        }

        .card-social {
            display: flex;
            padding: 10px 5px;
            justify-content: space-around;
            background-color: #2A2B30;
            border-radius: 8px;

        }
.card-social a:nth-last-child(1), /* Скрываем последнюю иконку */
.card-social a:nth-last-child(2) { /* Скрываем предпоследнюю иконку */
    display: none;
}
        .social-icon {
            width: 32px;
            height: 32px;
            margin-right: 5px;
            background-color: transparent;
            border-radius: 5px;
            border: 1px solid #535458;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #535458;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .social-icon.active {
            color: white;
            border: 1px solid #fff;
        }
        .social-icon:hover {
            color: white;
            border: 1px solid #fff;
        }

        .card-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 10px;
            width: 100%;
            padding: 5px;
            height: 100%;
            border-radius: 8px;
            background-color: #2A2B30;
        }
.card-rating.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}
        .card-rating i {
            color: #FFD700;
            margin-left: 3px;
            font-size: 10px;
            display: inline-block;
        }
        .card-rating a {
            margin-left: 5px;
        }

        .card-rating .card-reviews i {
            font-size: 22px;
            color: #fff;
        }
        .card-rating p {
            font-size: 12px;
        }

        .card-right {
            color: white;
            display: block;
            position: relative;
        }
.verify-icon {
        width: 16px;
        height: 16px;
        vertical-align: middle;
        margin-left: 3px;
        position: absolute;
        top: 0;
        right: 0;
}

        .card-phone {
            text-align: center;
            border: 1px solid #fff;
            padding: 8px 2px;
            display: inline-block;
            border-radius: 8px;
            width: 100%;
            font-weight: 600;
            letter-spacing: 0px;
            font-size: 15px;
            color: #fff; /* Принудительно белый цвет */
            text-decoration: none;
            max-width: 100%;
            text-wrap: nowrap;
            word-wrap: break-word;
            overflow-wrap: break-word; 

        }
        .card-phone a {
    color: inherit; /* Наследуем цвет */
    text-decoration: none; /* Убираем подчеркивание */
    pointer-events: none; /* Отключаем клик по номеру */
}
        .card-adress {
            background-color: #2A2B30;
            display: none;
            margin-top: 15px;
            border-radius: 8px;
            padding: 16px 15px;
        }
        .card-adress-mobile {
            background-color: #2A2B30;
            display: block;
            width: 100%;
            height: 50px;
            max-height: 50px;
            overflow: hidden;
            box-sizing: border-box;
            margin-top: 0px;
            font-size: 14px;
            border-radius: 8px;
            padding: 6px 5px;
            grid-column: span 2;
            text-decoration: none;
            text-align: center;
        }
        .card-adress-mobile-block {
            display: flex;
            width: 100%;
            height: 38px !important;
            max-height: 38px !important;
            overflow: hidden;
            box-sizing: border-box;
            margin: 0px;
            padding: 0px;
            text-align: center;
            vertical-align: middle;
        }
        .card-adress-mobile a i {
            margin-left: 5px;
            margin-right: 5px;
            color: #fff;
        }
        .card-adress-mobile a {
            display: block;
            margin: auto;
            color: #FFC83A;
            text-decoration: none;
            text-align: center;
            font-size: 16px;
            max-width: 26ch;
            max-height: 38px !important;
            overflow: hidden;
            vertical-align: middle;
        }
        .card-contact {
            margin-bottom: 15px;
        }

        

        .card-contact i {
            margin-right: 0px;
        }

        .card-params, .card-prices {
            background-color: #2A2B30;
            display: block;
            margin-top: 15px;
            border-radius: 8px;
            padding: 10px 15px;
        }

        .card-params div, .card-prices div {
            display: flex;
            justify-content: space-between;
            line-height: 31px;
            border-bottom: 1px solid #36373C;
        }
        .card-params div:last-child, .card-prices div:last-child {
            border-bottom: none;
        }
.home-modal {
    display: none;
    position: fixed;
    z-index: 90;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.9);
}

.home-modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#homeModalImage {
    width: auto;
    height: 90vh;
}

.home-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
}

.home-prev, .home-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    display: none;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.home-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.home-prev {
    left: 0;
}

.home-prev:hover, .home-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.load-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.load-more-container button {
    background-color: transparent;
    border: 1px solid #FFC83A;
    line-height: 40px;
    font-size: 16px;
    border-radius: 20px;
    color: #FFC83A;
    padding: 0 20px;
}
.hero {
    background: url('/assets/images/hero.png') no-repeat right -540px center;
    background-size: cover;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 15px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}


.hero-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
    font-weight: normal;
}

.hero-title span {
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    max-width: 260px;
    line-height: 1.6;
}
.about-section {
    margin-top: 60px;
    padding: 60px 0;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    margin-bottom: 50px;
}

.about-container {
    background-color: #1E1F23;
    border-radius: 10px;
    padding: 50px;
    padding-bottom: 150px;
}

.about-title {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 80px;
    font-weight: normal;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.about-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #e0e0e0;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700;
}

.show-more {
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    margin-bottom: 30px;
}

.show-more:hover {
    text-decoration: underline;
}

.share-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    float: right;
    margin-top: 0px;
}

.share-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hidden-content {
    display: none;
}
}



.card-name {
    max-width: 210px;
    max-height: 50px;
    overflow: hidden;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    word-break: keep-all;
    font-size: 22px !important;
}
@media (max-width: 767px) {
    .card-name {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        max-height: 50px;
        overflow: hidden;
        font-weight: bold;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: #fff;
        text-decoration: none;
        display: block;
        white-space: nowrap;
        word-break: keep-all;
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    .card-name {

    }
}