/* Стилі з попередньої відповіді */

/* Основний контейнер для позиціонування */
.floating-widget-container {
    position: fixed;
    right: 20px; /* Відступ праворуч */
    bottom: 20px; /* Відступ знизу */
    z-index: 9999; /* Високий z-index */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Стилі для іконки-перемикача (скріншот 1/2) */
.toggle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6a1b9a; /* Фіолетовий колір фону іконки */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin-top: 10px; /* Відступ від меню, коли воно відкрите */
    /* Додаткові стилі для "X" */
    transition: background-color 0.3s, box-shadow 0.3s;
}
.initial-icon
 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle-button img {
    max-width: 40px;
    max-height: 40px;
}

/* Стилі для іконки закриття (X) */
.close-icon svg {
    width: 30px;
    height: 30px;
}

/* Стилі для меню з блоками (скріншот 2) */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Відстань між SANTA VEGAS та ROCKETMART */
}

.menu-item {
    width: 200px; /* Ширина блоків */
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b1fa2, #4a148c); /* Градієнт фіолетового */
    color: white;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.2s;
    text-decoration: none; /* Видалити підкреслення посилання */
    display: block; /* Щоб посилання займало весь блок */
}

.menu-item:hover {
    background: linear-gradient(135deg, #8e24aa, #6a1b9a);
}

.menu-item img {
    max-width: 50px;
    display: block;
    margin: 0 auto 5px;
}

/* Стиль для плашки "NEW" */
.menu-item.new {
    position: relative;
}

.menu-item.new::before {
    content: 'NEW';
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff5722; /* Помаранчевий колір */
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
}

/* Допоміжний клас для приховування/показу */
.hidden {
    display: none !important;
}