/* Music Instruments niche styles */

/* Action buttons row (Official Page + Buy) */
#single-site-wrap .site-action-buttons {
    display: flex;
    gap: 8px;
    float: right;
}

#single-site-wrap .buy-button {
    background: linear-gradient(135deg, #e0c080, #c9a050);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 20px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s linear;
    white-space: nowrap;
}

#single-site-wrap .buy-button:hover {
    background: linear-gradient(135deg, #f0d090, #d9b060);
    scale: 1.05;
    text-decoration: none;
}

/* Price hero inside instrument details panel */
.instrument-price-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
}

.instrument-price-hero .price-amount {
    font-size: 1.8em;
    font-weight: 700;
    color: #e0c080;
    letter-spacing: -0.02em;
}

/* Skill level badges */
.skill-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-badge.skill-beginner {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.skill-badge.skill-intermediate {
    background: rgba(66, 165, 245, 0.15);
    color: #90caf9;
    border: 1px solid rgba(66, 165, 245, 0.3);
}

.skill-badge.skill-advanced {
    background: rgba(171, 71, 188, 0.15);
    color: #ce93d8;
    border: 1px solid rgba(171, 71, 188, 0.3);
}

.skill-badge.skill-professional {
    background: rgba(224, 192, 128, 0.15);
    color: #e0c080;
    border: 1px solid rgba(224, 192, 128, 0.3);
}

/* Buy CTA inside instrument details panel */
.instrument-buy-cta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #333;
}

.buy-cta-button {
    display: block;
    background: linear-gradient(135deg, #e0c080, #c9a050);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.buy-cta-button:hover {
    background: linear-gradient(135deg, #f0d090, #d9b060);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 192, 128, 0.3);
    text-decoration: none;
    color: #1a1a1a;
}

/* ══════════════════════════════════════════
   Hierarchical Categories
   ══════════════════════════════════════════ */

/* Hierarchy styles moved to shared.css */

/* Instrument details panel refinements */
.instrument-details .niche-info-grid {
    gap: 6px;
}

@media (max-width: 480px) {
    #single-site-wrap .site-action-buttons {
        flex-direction: column;
        float: none;
        width: 100%;
    }

    #single-site-wrap .buy-button,
    #single-site-wrap .visit-button {
        width: 100%;
        text-align: center;
    }

    .instrument-price-hero {
        flex-wrap: wrap;
        gap: 8px;
    }
}
