/* تنسيق الأزرار الثابتة في أسفل صفحة المنتج */
.fixed-product-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
    height: 45px;
}

.quantity-controls button {
    background-color: white;
    border: none;
    width: 40px;
    height: 45px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.quantity-controls input {
    flex: 1;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.fixed-buttons-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
}

.btn-buy-now {
    flex: 1;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--body-font);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.fixed-btn-add-cart {
    flex: 1;
    background-color: var(--primary-color);
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--body-font);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.cart-icon {
    margin-left: 5px;
}
