/*
Theme Name: RDV Theme
Theme URI: https://github.com/elementor/hello-biz-child/
Description: Theme for Rendez-vous website, created by Jimmy Roy @NETIXY
Template: hello-biz
Author: Jimmy Roy @NETIXY
Author URI: https://netixy.com/
Version: 1.0.0
Stable tag: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-biz-child
Tags: flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready, style-variations
*/

/* Add your custom styles here */
.breadcrumb-separator {
	padding: 0 5px;
}

/* Page produit - Modification du sélecteur de quantité */
.woocommerce div.quantity,
.single-product div.quantity {
    position: relative !important;
    display: inline-flex !important;
    align-items: stretch !important;
    border: 1px solid #1992a2 !important;
    border-radius: 8px !important;
    overflow: visible !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    min-width: 120px !important;
    height: 48px !important;
}

.quantity input.qty {
    border: none !important;
    flex: 1 !important;
    height: 100% !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 0 12px !important;
    background: transparent !important;
    outline: none !important;
}

/* ZONE + (droite haut) */
.quantity::before {
    content: '+' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 32px !important;
    height: 50% !important;
    background: #f8f9fa !important;
    border-left: 1px solid #1992a2 !important;
	border-top-right-radius: 8px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #1b252f !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: background 0.2s !important;
    line-height: 1 !important;
}

.quantity::before:hover {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

/* ZONE − (droite bas) */
.quantity::after {
    content: '−' !important; /* Unicode tiret moins */
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 32px !important;
    height: 50% !important;
    background: #f8f9fa !important;
    border-left: 1px solid #1992a2 !important;
	border-bottom-right-radius: 8px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #1b252f !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: background 0.2s !important;
    line-height: 1 !important;
}

.quantity::after:hover {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

/* Masque flèches natives */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none !important; }
.quantity input.qty { -moz-appearance: textfield !important; }
