/* Impersonation banner */
.header { position: relative !important; top: 0 !important; }
.alert-warning { height: 60px; display: flex; align-items: center; }

/* Product cart button */
.product-cart-btn {
    position: relative;
    border: none;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    width: 42px;
    height: 42px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-cart-btn:hover { color: var(--color-white); background: var(--theme-color); }
.product-cart-btn i { line-height: 1; margin: 0; }
@media all and (min-width: 992px) and (max-width: 1399px) {
    .product-cart-btn { width: 37px; height: 37px; font-size: 15px; }
}
@media (max-width: 576px) {
    .product-cart-btn { width: 40px; height: 40px; }
}

/* Product Buy Now button */
.product-buy-now-btn {
    position: relative;
    border: none;
    background: #11B76B;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    height: 42px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.product-buy-now-btn:hover { color: #fff; background: #0e9356; text-decoration: none; }
.product-buy-now-btn.disabled { background: #11B76B !important; opacity: 0.65; cursor: not-allowed; pointer-events: none; }
@media all and (min-width: 992px) and (max-width: 1399px) {
    .product-buy-now-btn { font-size: 12px; padding: 5px 12px; height: 37px; }
}
@media (max-width: 576px) {
    .product-buy-now-btn { font-size: 12px; padding: 5px 11px; height: 40px; }
}
