input.qty-value:focus {
	border-color: none;
}
input.qty-value {
	border-left: none;
    border-right: none;
    border-radius: 0;
}

.js-color-btn{
	width: auto;
    height: 48px;
}
/* Общий контейнер для кнопок */
.product-buy-controls__wrapper {
    margin: 20px 0;
}

/* Кнопка "Добавить в корзину" и "Перейти в корзину" */
.submit-btn.add-to-cart-btn,
.submit-btn.go-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #C4553A; /* Терракотовый цвет как на макете */
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.submit-btn.add-to-cart-btn:hover,
.submit-btn.go-to-cart-btn:hover {
    background-color: #a8432c;
    color: #fff;
}

/* Блок со счётчиком и кнопкой перехода */
.product-quantity-toggle-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Конструктор счётчика количества */
.quantity-counter {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    height: 48px; /* Высота подгоняется под размер кнопок */
    background: #fff;
    overflow: hidden;
}

.quantity-counter__btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 14px;
    color: #7F7F7F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    user-select: none;
}

.quantity-counter__btn:hover {
    background-color: #F9F9F9;
    color: #2C2C2C;
}

.quantity-counter__input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    outline: none;
    -moz-appearance: textfield;
}

/* Скрываем стандартные стрелочки инпута */
.quantity-counter__input::-webkit-outer-spin-button,
.quantity-counter__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Служебный класс для скрытия */
.d-none {
    display: none !important;
}