/* Bazar product phone display styles */
.bazar-phone-display {
    margin-top: 15px;
    width: 100%;
}

.bazar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bazar-contact-info strong {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bazar-phone-number {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bazar-phone-number:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.bazar-phone-number:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tablet and up */
@media (min-width: 576px) {
    .bazar-phone-number {
        display: block;
        max-width: 300px;
    }
}

/* Hide add to cart elements for Bazar products */
.bazar-product .add-to-cart-button,
.bazar-product .quantity {
    display: none !important;
}
