/* ==========================================================================
   Ultra-Premium Product Card System
   ========================================================================== */
.product-item-card {
    background: #e9e9f982;
    border-radius: 23px;
    padding: var(--space-md);
    border: 1px solid #e9e9e9;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    list-style: none;
}

.product-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item-image-wrapper {
    position: relative;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.product-item-image-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-item-card:hover .product-item-image-wrapper img {
    transform: scale(1.1);
}

.product-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.57);
    backdrop-filter: blur(3px);
    color: #000;
    padding: 6px 14px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Sofia Pro', sans-serif;
}

.product-item-details {
    padding: var(--space-md) var(--space-sm) var(--space-xs);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-item-title {
    font-size: 19px !important;
    font-family: var(--header-font) !important;
    font-weight: 700 !important;
    margin-bottom: var(--space-sm) !important;
    line-height: 1.2 !important;
}

.product-item-title a {
    color: var(--text-black) !important;
    text-decoration: none !important;
}

.product-item-title a:hover {
    color: var(--primary-color) !important;
}

.product-item-price {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--text-black) !important;
    margin-bottom: var(--space-sm);
}

.product-item-price del {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-right: 5px;
}

.product-item-price ins {
    text-decoration: none;
    color: var(--primary-color);
}

.product-item-actions {
    margin-top: auto;
    padding-top: var(--space-sm);
}

.whatsapp-shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    font-family: var(--button-font);
    font-size: 14px;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-shop-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.product-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-item-actions a {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .product-item-card {
        border-radius: 20px;
    }
}