.toggle-wrapper {
    align-self: center;
}
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-button {
    position: relative;
    width: 50px;
    height: 30px;
    background-color: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-button::after {
    content: "%";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    color: #666;
    font-size: 16px;
}

.toggle-button.active {
    background-color: #444;
}

.toggle-button.active::after {
    transform: translateX(20px);
    color: #f00;
}

.toggle-blackfriday-text {
    display: flex;
    gap: 5px;
}

.toggle-blackfriday-text .red-toggle-text {
    color: #f00;
    font-weight: bold;
}

.toggle-blackfriday-text .black-toggle-text {
    color: #333;
}
