/**
 * B2B Catalog Mode — hide price and cart elements for guests
 * This CSS is only loaded when the module is active for the current user
 */

/* Product page */
.product-info__price-side,
.product-info__quantity-row,
.product-sticky-bar,
.product-discounts {
    display: none !important;
}

/* Product listing / miniatures */
.product-miniature__price,
.product-card__price,
.product-card__add-to-cart {
    display: none !important;
}

/* Cart access */
.header__cart-count {
    display: none !important;
}

/* CTA styling */
.ppcatalogmode-cta {
    margin: 16px 0;
}

.ppcatalogmode-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--color-primary, #047775);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ppcatalogmode-cta__link:hover {
    background-color: var(--color-primary-dark, #035d5b);
    color: #fff;
    text-decoration: none;
}

.ppcatalogmode-cta__link i {
    font-size: 18px;
}
