/* Product Card Highlights */
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.highlight-pill {
    display: inline-block;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    line-height: 1.2;
}

.highlight-pill i {
    display: none; /* Hide icons for cleaner look */
}

/* Card separators */
.card-body hr {
    margin: 10px 0;
    border-top: 1px solid #e5e5e5;
    opacity: 0.6;
}

/* Price display adjustments for mobile */
.product-price-display {
    margin: 10px 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pricing-color, #2c5f2d);
}

.price-unit {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .highlight-pill {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .price-from,
    .price-unit {
        font-size: 0.7rem;
    }
    
    .product-highlights {
        gap: 6px;
        margin-bottom: 10px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .highlight-pill {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .price-amount {
        font-size: 1rem;
    }
}
