.price-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top-color: #0083FF;
    border-radius: 50%;
    animation: rpt-spin 0.8s linear infinite;
}

@keyframes rpt-spin {
    to {
        transform: rotate(360deg);
    }
}

.p-price-main {
    font-weight: 700;
    color: #10093C;
}

.p-price-main sup {
    font-size: 0.7em;
}

.price-container {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.price-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #0083FF;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    padding: 0;
    line-height: 1;
    font-family: serif;
    vertical-align: middle;
    margin-left: 3px;
}

.price-info-btn:hover {
    background: #0A287D;
}

.tooltip-inner {
    max-width: 280px;
    text-align: left;
    padding: 12px 15px;
}

.tooltip-price-header {
    font-weight: 700;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.tooltip-price-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}

.tooltip-price-row.remise {
    color: #5fd9c9;
}

.tooltip-price-row.total {
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    padding-top: 6px;
}

.p-img-product,
.p-img-brand {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.qty-selector {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 38px;
    margin-right: 8px;
}

.qty-btn {
    width: 38px;
    height: 100%;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
}

.qty-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.qty-btn:active {
    background-color: #dee2e6;
}

.qty-btn:focus {
    outline: none;
    border-color: #0083FF;
    -webkit-box-shadow: 0 0 0 2px rgba(0, 131, 255, 0.25);
    box-shadow: 0 0 0 2px rgba(0, 131, 255, 0.25);
    z-index: 1;
    position: relative;
}

.qty-btn.qty-minus {
    border-radius: 4px 0 0 4px;
}

.qty-btn.qty-plus {
    border-radius: 0;
}

.qty-input {
    width: 50px;
    height: 38px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0F0A3D;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
    border-color: #0083FF;
    -webkit-box-shadow: 0 0 0 2px rgba(0, 131, 255, 0.25);
    box-shadow: 0 0 0 2px rgba(0, 131, 255, 0.25);
    z-index: 1;
    position: relative;
}

.btn-add-cart {
    border-radius: 4px;
}

.p-link-product {
    font-size: 12px;
    color: #0083FF;
}

.p-link-product:hover {
    color: #0A287D;
    text-decoration: underline;
}
