/* Добавление стилей для скрытия текста placeholder в полях "Количество" и "Цена" */
input.quantity-placeholder::placeholder,
input.price-placeholder::placeholder {
    color: transparent;
}

/* Существующие стили */
.image-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.image-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px;
}
.image-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.item-image {
    width: 15vw;
    height: auto;
    margin-right: 20px;
}

.color-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.color-item {
    width: 10vw;
    height: auto;
    cursor: pointer;
}
.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
    background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
    left: 30px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}
.hidden {
    display: none;
}

.payment-type-container {
    text-align: center; /* Центрирует текст по горизонтали */
    margin: 20px 5px;
}

.payment-type-container p {
    font-size: 18px;
    margin-bottom: 10px;
}


