/* 1. Контейнер хмари (фон космосу) */
.ns-perfume-cloud {
    position: relative;
    width: 100%;
    height: 600px;
    background: #0a0a0a; /* Чорний фон */
    /* Радіальний градієнт для ефекту глибини */
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #222;
    margin: 40px 0;
}

/* 2. Рухомий елемент (посилання) - СКИДАННЯ СТИЛІВ */
.ns-perfume-cloud .ns-cloud-item {
    position: absolute;
    width: 120px;  /* Розмір області для флакона */
    height: 120px;
    
    /* 🔥 ГОЛОВНЕ: Прибираємо все біле і кругле 🔥 */
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important; /* Робимо квадратним (невидимим) */
    box-shadow: none !important;
    outline: none !important;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: transform 0.1s linear, z-index 0s, width 0.3s, height 0.3s;
    cursor: pointer;
    z-index: 1;
    text-decoration: none !important; /* Прибираємо підкреслення теми */
}

/* 3. Сама картинка флакона */
.ns-perfume-cloud .ns-cloud-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Картинка вписується, не обрізається */
    
    /* Скидання стилів, які тема може накидати на картинки */
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    
    /* Легка тінь для об'єму самого флакона */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.8));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 4. Ефект при наведенні (Hover) */
.ns-perfume-cloud .ns-cloud-item:hover {
    z-index: 100; /* На передній план */
    width: 150px; /* Збільшення контейнера */
    height: 150px;
}

/* Світіння при наведенні */
.ns-perfume-cloud .ns-cloud-item:hover img {
    /* Золоте світіння навколо контуру флакона */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    transform: scale(1.1) rotate(-5deg); /* Легкий нахил */
}

/* 5. Підказка з назвою (Tooltip) */
.ns-cloud-tooltip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    
    background: rgba(212, 175, 55, 0.95); /* Золота плашка */
    color: #000;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 101;
}

.ns-perfume-cloud .ns-cloud-item:hover .ns-cloud-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(30px); /* Виїжджає вниз */
}