/* Retail Pro Card System */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    border-color: var(--color-primary);
}

/* Product Specific Cards */
.product-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-card .card-image {
    height: 280px;
}

.product-info {
    padding: 2rem;
    flex: 1;
}

/* Retail Badges */
.item-indicator {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.1rem;
}

.item-indicator.green { background: var(--color-success); }
.item-indicator.red { background: var(--color-accent); }

/* Pricing */
.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 1rem;
}

.price-offer {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 2.4rem;
    font-family: var(--font-title);
}

.price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.5rem;
}

/* Icons & Actions */
.card-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: #f1f5f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.product-actions {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f1f5f9;
}

.card-image {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}