/* === SHOP ITEM STYLES === */
.shop-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.shop-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.shop-item:hover::before {
    opacity: 1;
}

.shop-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.shop-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.shop-item.locked:hover {
    transform: none;
    box-shadow: none;
}

.shop-item.owned {
    background: rgba(0, 255, 100, 0.05);
    border: 1px solid rgba(0, 255, 100, 0.2);
}

.shop-item-icon {
    font-size: 48px;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s;
}

.shop-item:hover .shop-item-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

.shop-item.locked .shop-item-icon {
    filter: grayscale(1) opacity(0.5);
}

.shop-item-content {
    flex: 1;
}

.shop-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.shop-item-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.shop-item-stats {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.shop-item-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
}

.shop-item-price {
    font-size: 14px;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.shop-item-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 90px;
    text-align: center;
}

.shop-item-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.shop-item-btn.active:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.shop-item-btn.active:active {
    transform: scale(0.95);
}

.shop-item-btn.locked,
.shop-item-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    cursor: not-allowed;
    font-size: 10px;
}

.shop-item-btn.owned {
    background: rgba(0, 255, 100, 0.2);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 100, 0.3);
    cursor: default;
}

/* Shop Items Loading Animation */
@keyframes shopItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.shop-item {
    animation: shopItemSlideIn 0.3s ease-out;
}

.shop-item:nth-child(1) {
    animation-delay: 0s;
}

.shop-item:nth-child(2) {
    animation-delay: 0.05s;
}

.shop-item:nth-child(3) {
    animation-delay: 0.1s;
}

.shop-item:nth-child(4) {
    animation-delay: 0.15s;
}

.shop-item:nth-child(5) {
    animation-delay: 0.2s;
}