.product-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 300px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card.hidden {
    display: none !important;
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    font-size: 0.8em;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7em;
    font-weight: 700;
    color: white;
    z-index: 10;
}

.product-tag.fan,
.product-tag.player {
    background-color: #007bff;
}

.product-tag.retro {
    background-color: #5a5a5a;
}

.product-tag.offer {
    background-color: var(--color-accent);
}

.product-name {
    font-weight: 400;
    margin: 5px 10px;
    font-size: 0.95em;
    color: #000;
}

.product-price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 5px;
}

.product-price.offer-price {
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.8em;
}

.new-price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2em;
}
