/**
 * Perfume Variations Luxury Styling
 */

.perfume-variation-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.perfume-pill {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 80px;
}

.perfume-pill:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.perfume-pill.active {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.perfume-pill.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #444;
}

/* Intensity Nodes */
.perfume-intensity-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.perfume-intensity-node {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.perfume-intensity-node:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4af37;
    transform: translateX(5px);
}

.perfume-intensity-node.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.intensity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.intensity-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mood Nodes */
.perfume-mood-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.perfume-mood-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.perfume-mood-pill .mood-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.perfume-mood-pill:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.perfume-mood-pill:hover .mood-icon {
    transform: scale(1.2) rotate(10deg);
}

.perfume-mood-pill.active {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
    font-weight: 600;
}

.perfume-mood-pill.active .mood-icon {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

/* Specific styling for the variation label */
.variations label {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

/* Price update animation */
.single_variation_wrap .price {
    display: block;
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}