/* Иконка вопроса */
.question-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
    box-shadow:
        0 2px 6px rgba(0,0,0,0.1),
        inset 0 1px 3px rgba(255,255,255,0.6),
        inset 0 -1px 2px rgba(0,0,0,0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #660066;
}

.question-icon:hover {
    color: #333;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    box-shadow:
        0 4px 10px rgba(0,0,0,0.15),
        inset 0 2px 4px rgba(255,255,255,0.7),
        inset 0 -2px 3px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

/* Выпадающее меню вопроса */
.question-menu {
    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 30;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    padding: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:hover {
    background: #f0f0f0;
}

.menu-item i {
    font-size: 1.1rem;
    color: #666;
}

/* Кнопка закрытия */
.close {
    cursor: pointer;
    font-size: 1.4rem;
    color: #660066;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        inset 0 1px 3px rgba(255,255,255,0.6),
        inset 0 -1px 2px rgba(0,0,0,0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    user-select: none;
}

.close:hover {
    color: #260026;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        inset 0 2px 4px rgba(255,255,255,0.7),
        inset 0 -2px 3px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.close:active {
    transform: scale(0.95);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        inset 0 1px 2px rgba(255,255,255,0.8),
        inset 0 -1px 2px rgba(0,0,0,0.1);
}

/* Стрелки слайдера */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #660066;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    box-shadow: 
        0 6px 16px rgba(0,0,0,0.4),
        inset 0 2px 4px rgba(255,255,255,0.7),
        inset 0 -2px 4px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(1px);
}

.slider-arrow.left-arrow {
    left: -12px;
}

.slider-arrow.right-arrow {
    right: -12px;
}

.slider-arrow:hover {
    color: #260026;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.5),
        inset 0 3px 6px rgba(255,255,255,0.8);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

#prevArrow, #nextArrow {
    display: none;
}

#prevArrow.visible, #nextArrow.visible {
    display: flex;
}

/* Иконка корзины (добавьте, когда реализуете) */
.cart-icon {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
    box-shadow:
        0 2px 6px rgba(0,0,0,0.1),
        inset 0 1px 3px rgba(255,255,255,0.6),
        inset 0 -1px 2px rgba(0,0,0,0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    color: #660066;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.cart-icon:hover {
    color: #260026;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    box-shadow:
        0 4px 10px rgba(0,0,0,0.15),
        inset 0 2px 4px rgba(255,255,255,0.7),
        inset 0 -2px 3px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.modal-content:not(.first-screen) .cart-icon {
    display: none;
}
