.cmp-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

/* Global Product Card Image Layout */
.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    height: 0;
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge-pro {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    z-index: 10; 
    background: rgba(0, 0, 0, 0.45); 
    backdrop-filter: blur(12px); 
    height: 38px; 
    width: 38px;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid rgba(255, 215, 0, 0.4); 
    transition: all 0.3s ease;
    cursor: help;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.featured-badge-pro span.star-icon { 
    color: #FFD700; 
    font-size: 1.3rem; 
    filter: drop-shadow(0 0 5px rgba(255,215,0,0.4));
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); 
    pointer-events: none; 
}
.featured-badge-pro:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #FFD700;
}
.featured-badge-pro:hover span.star-icon { 
    transform: rotate(360deg); 
}
