.product-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card.is-unavailable {
    opacity: 0.8;
}

.unavailable-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(17, 0, 28, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.reserve-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 152, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.brand-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--orbe-laranja);
    z-index: 2;
}

.product-card .img-wrap {
    height: 180px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card .img-main {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-card .img-hover-swap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    margin: auto;
}

.product-card .card-body {
    flex: 1;
}

.product-card .cod-text {
    font-size: 11px;
    font-weight: 500;
}

.product-card .prod-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}

.product-card .price-main {
    font-weight: 800;
    font-size: 20px;
    color: var(--orbe-laranja);
}

.product-card.is-unavailable .price-main {
    color: #888;
}

.product-card .price-main span {
    font-size: 14px;
}

.product-card .price-alt {
    font-size: 11px;
    color: #888;
}

/* Compact Card Styles */
.compact-product-link {
    gap: 12px;
    transition: 0.2s;
}

.compact-product-link.is-unavailable {
    opacity: 0.6;
}

.compact-img-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    position: relative;
}

.compact-unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.5);
    z-index: 2;
}

.compact-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.compact-title {
    font-size: 11px;
    font-weight: 600;
    color: #3b82f6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.compact-price {
    font-weight: 800;
    font-size: 13px;
    color: #111;
}
