.choice-product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
    /* fallback */
    max-width: 320px;
    margin: 0 auto;
}

.choice-product-card:hover {
    transform: translateY(-5px);
}

.choice-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 65px;
    height: 65px;
    background-color: #ff007f;
    /* Pink */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    /* Slightly smaller for prices */
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    line-height: 1.2;
    overflow: hidden;
    padding: 2px;
}

.choice-badge span {
    display: block;
    text-align: center;
}

/* Ensure WooCommerce Price HTML fits */
.choice-badge .woocommerce-Price-amount {
    display: block;
}

.choice-badge del {
    display: none;
    /* Hide old price if inside badge, just show current */
}

.choice-product-image-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    /* Fixed height container */
}

/* Style the IMG tag directly */
.choice-product-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    /* Ensures image fills circle without distortion */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choice-product-title {
    margin: 15px 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.choice-product-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    padding: 0 10px;
}

.choice-product-rating {
    margin-bottom: 20px;
    color: #ffcc00;
    /* Gold */
    font-size: 18px;
    letter-spacing: 2px;
}

.choice-product-rating .star.empty {
    color: #e0e0e0;
}

.choice-product-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.choice-product-button:hover {
    background-color: #333;
    color: #fff;
}