/* 🛒 WEBSHOP PREMIUM - Estilos Modernos */

/* Card de Item */
.shop-item-card {
    background: #1a1f24;
    border: 1px solid #2a2f35;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.shop-item-card:hover {
    border-color: #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.shop-item-card.featured {
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.shop-item-card.new-item {
    position: relative;
}

.shop-item-card.new-item::before {
    content: 'NEW';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

/* Imagen del Item */
.shop-item-image {
    background: #0a0c0f;
    padding: 1.5rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shop-item-image img {
    max-height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.shop-item-card:hover .shop-item-image img {
    transform: scale(1.1);
}

/* Información del Item */
.shop-item-info {
    padding: 1rem;
}

.shop-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e9ecef;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-item-category {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

/* Precios */
.shop-item-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.shop-price-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.shop-price-badge.credits {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.shop-price-badge.golds {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border: 1px solid #0dcaf0;
}

.shop-price-badge.premium {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid #198754;
}

.shop-price-badge.ruud {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Botones de Compra */
.shop-buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-buy-btn {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.shop-buy-btn.credits {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
}

.shop-buy-btn.golds {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: #fff;
}

.shop-buy-btn.premium {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
}

.shop-buy-btn.ruud {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: #fff;
}

.shop-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.shop-buy-btn:disabled {
    background: #2a2f35;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Stock Badge */
.shop-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.shop-stock-badge.in-stock {
    background: #198754;
    color: #fff;
}

.shop-stock-badge.low-stock {
    background: #ffc107;
    color: #000;
}

.shop-stock-badge.out-of-stock {
    background: #dc3545;
    color: #fff;
}

/* Paginación */
.shop-pagination .page-link {
    background: #1a1f24;
    border: 1px solid #2a2f35;
    color: #e9ecef;
}

.shop-pagination .page-link:hover {
    background: #2a2f35;
    border-color: #ffc107;
    color: #ffc107;
}

.shop-pagination .page-item.active .page-link {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-item-image {
        min-height: 100px;
        padding: 1rem;
    }
    
    .shop-item-image img {
        max-height: 60px;
    }
    
    .shop-item-info {
        padding: 0.75rem;
    }
    
    .shop-item-name {
        font-size: 0.8rem;
    }
}