.errorpagein {
    margin-bottom: 70px;
}

.errorpagein {
    text-align: center;
}

.num-404-error {
    font-size: 200px;
    margin-top: 50px;
    line-height: 160px;
    color: #ca090d;
    margin-bottom: 20px;
}

.text-404-error {
    font-size: 30px;
    padding: 35px 0;
}

.errorpagein .btn-primary {
    position: relative;
    display: inline-block;
    height: auto;
    padding: 15px 21px 16px;
    text-decoration: none;
    text-align: center;
    line-height: 18px;
    font-size: 23px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    background: #ca090d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0s;
    transition: 0s;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #ca090d;
    border-bottom-color: #a3273c;
}

h1 {
    margin-bottom: 20px;
}

.tez-al .h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 145%;
    /* or 46px */


    /* black */

    color: #1A1D1F;
    margin-bottom: 24px;
}

.tez-al {
    padding: 55px 65px;
    display: flex;
    gap: 60px;
}

.tez-al .text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    /* or 23px */

    text-align: justify;

    /* black */

    color: #1A1D1F;
}

.tez-al .button {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */


    /* white */

    color: #FFFFFF;
    padding: 20px 52px;
    background: #1A1D1F;
    border-radius: 4px;
    margin-top: 42px;
}
.tez-al .button:hover{
    color: #FFFFFF;
}
@media all and (max-width:768px){
    .tez-al {
        padding: 20px 0;
    }
    .tez-al img{
        display: none;
    }
    .tez-al .h2{
        font-size: 22px;
    }
}

.product-page-reviews .vacancy-page-form{
    margin-top: 30px;
}

.cart-inner-st{
    position: relative;
}

.error{
    color: #ca090d;
    margin:10px auto ;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: bold;
}
.add-basket-one.desktop{
    padding: 6px 12px;
    background: #fff;
    border: 2px solid #006e37;
    color: #006e37;
}
.add-basket-one.mobile{
    display: none;
}
@media all and (max-width:768px){
    .add-basket-one.mobile{
        display: block;
    }
    .add-basket-one.desktop{
        display: none;
    }
}
.lang-switcher {
    position: relative;
    display: inline-block;
}

/* кнопка */
.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    background: #fff;

    font-size: 14px;
    font-weight: 500;
    color: #222;

    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-switcher__current:hover {
    border-color: #D32F2F;
    color: #D32F2F;
}

/* флаг */
.lang-switcher__flag,
.lang-switcher__item img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

/* стрелка */
.lang-switcher__arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

/* dropdown */
.lang-switcher__dropdown {
    position: absolute;
    top: 110%;
    right: 0;

    min-width: 85px;
    padding: 6px;

    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);

    transition: all 0.2s ease;
    z-index: 10;
}

/* пункт */
.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 10px;
    border-radius: 8px;

    text-decoration: none;
    color: #333;
    font-size: 14px;

    transition: all 0.2s ease;
}

.lang-switcher__item:hover {
    background: #F5F5F5;
}

.lang-switcher__item.active {
    color: #D32F2F;
    font-weight: 600;
}

/* открытие */
.lang-switcher.open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher.open .lang-switcher__arrow {
    transform: rotate(180deg);
}