/* Your custom css */

/* Professional styling for Login to see price link */
.login-to-see-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: hsl(var(--base)) !important;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid hsl(var(--base) / 0.3);
    border-radius: 4px;
    background-color: hsl(var(--base) / 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-to-see-price:hover {
    background-color: hsl(var(--base) / 0.1);
    border-color: hsl(var(--base) / 0.5);
    color: hsl(var(--base)) !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px hsl(var(--base) / 0.15);
}

.login-to-see-price i {
    font-size: 0.875rem;
}

/* Ensure it looks good in price containers */
.price .login-to-see-price,
.product-price .login-to-see-price,
.best-sell-item .price .login-to-see-price {
    margin: 0;
}

/* Compare page specific styling */
.compare-product-price .login-to-see-price {
    display: inline-flex;
}