/* Styles pour le widget Product Aratice */
.aratice-product-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.product-info-container {
    width: 100%;
}

.product-taxonomies {
    display: flex;
    gap: 1rem;
    margin-bottom: 16px;
}

.product-info-container .product-category {
    background: aliceblue;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #1b517f;
}

.apg-product-actions {
    width: 100%;
}


.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.product-short-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* === Sélecteurs de variations === */
.product-variations-selector {
    margin-bottom: 24px;
}

.variation-attribute-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.variation-attribute-group:last-of-type {
    margin-bottom: 0;
}

.variation-attribute-label {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
}

.variation-attribute-select {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #2C3E50;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.variation-attribute-select:hover {
    border-color: #163C79;
}

.variation-attribute-select:focus {
    outline: none;
    border-color: #163C79;
}

/* Options désactivées */
.variation-attribute-select option:disabled {
    color: #9ca3af;
    font-style: italic;
    background: #f9fafb;
}

/* Prix "À partir de" pour les produits variables */
.product-cart-price.product-cart-price-starting .apg-price-starting {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-right: 4px;
}

/* Bouton désactivé pour les variations */
.product-cart-add-to-quote.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Notification pour les variations */
.product-cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.product-cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.product-cart-notification-success {
    border-left: 4px solid #7AC143;
}

.product-cart-notification-error {
    border-left: 4px solid #ef4444;
}

.product-cart-notification .notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.product-cart-notification-success .notification-icon {
    background: #7AC143;
    color: white;
}

.product-cart-notification-error .notification-icon {
    background: #ef4444;
    color: white;
}

.product-cart-notification .notification-message {
    font-size: 14px;
    color: #2C3E50;
    font-weight: 500;
}

/* Content Boxes */
.content-boxes-wrapper {
    margin-bottom: 30px;
}

.content-box {
    border: 1px solid;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.content-box:last-child {
    margin-bottom: 0;
}

.content-box-icon {
    font-size: 1.5rem;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box-content {
    flex: 1;
}

.content-box-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: inherit;
}

.content-box-text {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: inherit;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* Rating inline placé sous les catégories, au-dessus de la description courte
   (lien cliquable qui redirige vers la section #reviews) */
.product-rating-inline {
    margin: 4px 0 12px !important;
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer;
    scroll-behavior: smooth;
}

.product-rating-inline:hover .rating-text {
    color: #163c79 !important;
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

.product-rating-inline .rating-content {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-rating-inline .star {
    display: inline-block !important;
    color: #FFC107 !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: normal !important;
    line-height: 1 !important;
    font-family: Arial, 'Apple Color Emoji', 'Segoe UI Symbol', sans-serif !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    width: auto !important;
    height: auto !important;
}

.product-rating-inline .star.filled {
    color: #FFC107 !important;
}

.product-rating-inline .star.half {
    color: #FFC107 !important;
    opacity: 0.5 !important;
}

.product-rating-inline .star:not(.filled):not(.half) {
    color: #E0E0E0 !important;
}

.product-rating-inline .rating-text {
    display: inline !important;
    margin-left: 6px !important;
    color: #6b7280 !important;
    font-size: 13px !important;
    font-style: normal !important;
}

.rating-content {
    display: flex;
    align-items: center;
}

.rating-text {
    position: relative;
    top: 2px;
    margin-left: 6px;
    font-size: 0.9rem;
}

.stock-status {
    position: relative;
    top: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6ac28b;
    font-weight: bold;
    font-family: 'Lexend', sans-serif;
}

.stock-status i {
    font-size: 1rem;
}


/* Styles des prix HT/TTC dans le widget Product Cart */
.product-cart-price {
    margin-bottom: 30px;
}

.product-cart-price .apg-price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-cart-price .apg-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

/* Prix HT (principal) */
.product-cart-price .apg-price-ht {
    margin-bottom: 0px;
}

.product-cart-price .apg-price-amount-ht {
    font-size: 24px;
    font-weight: 700;
    color: #163C79;
    line-height: 1.2;
}

.product-cart-price .apg-price-amount-ht.apg-price-discounted {
    color: #7AC143;
}

.product-cart-price .apg-price-amount-ht .woocommerce-Price-amount {
    font-weight: 700 !important;
    color: #163C79 !important;
}

.product-cart-price .apg-price-amount-ht.apg-price-discounted .woocommerce-Price-amount {
    color: #7AC143 !important;
}

.product-cart-price .apg-price-label-main {
    font-size: 24px;
    color: #163C79;
    font-weight: 700;
    line-height: 1.2;
}

.product-cart-price .apg-price-old {
    font-size: 20px;
    color: #163C79;
    text-decoration: line-through;
    font-weight: 500;
}

.product-cart-price .apg-price-old .woocommerce-Price-amount {
    font-weight: 500;
    color: #163C79 !important;
}

/* Prix TTC (secondaire) */
.product-cart-price .apg-price-ttc {
    font-size: 18px;
    font-weight: 500;
    color: #7F8C8D;
}

.product-cart-price .apg-price-amount-ttc {
    font-size: 18px;
    font-weight: 500;
    color: #7F8C8D;
}

.product-cart-price .apg-price-amount-ttc.apg-price-discounted {
    color: #7AC143;
}

.product-cart-price .apg-price-amount-ttc .woocommerce-Price-amount {
    font-weight: 500 !important;
    color: #7F8C8D !important;
}

.product-cart-price .apg-price-amount-ttc.apg-price-discounted .woocommerce-Price-amount {
    color: #7AC143 !important;
}

.product-cart-price .apg-price-label-secondary {
    font-size: 18px;
    color: #7F8C8D;
    font-weight: 500;
}

.product-cart-price .apg-price-old-small {
    font-size: 15px;
    color: #7F8C8D;
    text-decoration: line-through;
    font-weight: 400;
}

.product-cart-price .apg-price-old-small .woocommerce-Price-amount {
    color: #7F8C8D !important;
}

/* Prix sur demande */
.product-cart-price .apg-no-price {
    font-size: 20px;
    font-weight: 600;
    color: #95A5A6;
    font-style: italic;
}

/* Legacy price style (pour compatibilité) */
.product-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.trust-badges {
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge:last-child {
    margin-bottom: 0;
}

.badge-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.quantity-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-weight: 500;
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    -moz-appearance: textfield;
}

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

.quantity-input:focus {
    outline: none;
}

.product-actions {
    display: flex;
    /* gap: 12px; */
    margin-bottom: 30px;
    height: 45px;
    align-items: flex-end;
}

.add-to-quote {
    flex: 1;
}

.share-product {
    background: transparent !important;
    width: fit-content;
    padding: 12px !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 45px;
}

.share-product i {
    scale: 1.5;
    color: black;
    font-weight: bold;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    letter-spacing: 0.5px;
    font-family: 'Lexend', sans-serif;
}

.btn-primary i {
    position: relative;
    top: -1px;
    font-size: 20px;
    font-weight: 300;
}

.btn-secondary {
    margin-left: 10px;
}

.product-features {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .aratice-product-widget {
        padding: 15px;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .add-to-quote {
        flex: none;
    }

    .share-product {
        width: 100% !important;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .quantity-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .content-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .content-box-icon {
        align-self: center;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Badges Container */
.trust-badges-container {
    border: 1px solid #dbdcdc;
    border-radius: 8px;
    padding: 16px;
}

.trust-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* .trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

 */

/* .trust-badge-item:hover {
    transform: translateY(-2px);
}

.trust-badge-icon {
    font-size: 1.5rem;
    min-width: 30px;
} */

/* .trust-badge-content span {
    font-size: 0.9rem;
    line-height: 1.4;
} */

.rating-text {
    font-size: 1.2rem;
    font-family: 'Lexend', sans-serif;
}


.eicon-check-circle-o {
    scale: 1.8;
}

.content-box:nth-child(1) .content-box-text {
    margin-left: -44px !important;
}

.quantity-wrapper .quantity-label {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
}

.quantity-controls button {
    background-color: #ffffff;
    color: black;
    font-weight: 400 !important;
}

.quantity-controls .quantity-input {
    width: 45px !important;
}

.quantity-controls .minus-btn {
    border-right: 1px solid #ddd;
}

.quantity-controls .plus-btn {
    border-left: 1px solid #ddd;
}

/* Forcer les styles de product-options-sidebar pour le widget product-cart */
.aratice-product-widget .apg-options-quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.aratice-product-widget .apg-options-quantity-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
}

.aratice-product-widget .apg-options-quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 8px;
    padding: 8px 16px;
    width: fit-content;
}

.aratice-product-widget .apg-options-qty-btn {
    width: 36px;
    height: 36px;
    background: #163C79;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aratice-product-widget .apg-options-qty-btn:hover {
    background: #0f2a5a;
    transform: scale(1.05);
}

.aratice-product-widget .apg-options-qty-btn:active {
    transform: scale(0.95);
}

.aratice-product-widget .apg-options-qty-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #163C79;
    border: none;
    background: transparent;
    outline: none;
}

/* Supprimer les flèches du input number */
.aratice-product-widget .apg-options-qty-input::-webkit-inner-spin-button,
.aratice-product-widget .apg-options-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.aratice-product-widget .apg-options-qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Style pour le groupe "créer un compte" dans le formulaire de devis */
.form-group.full .checkbox-group {
    background: #e9edf3;
    border: 1px solid #bfc9da;
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    margin-bottom: 8px;
}

.form-group.full .checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.form-group.full .checkbox-group label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.form-group.full .checkbox-group+small {
    margin-left: 16px;
    display: block;
    margin-top: 4px;
}

.add-request-quote-button {
    width: 100%;
    border-radius: 10px !important;
    border: none !important;
    outline: none !important;
}

.add-request-quote-button:hover {
    background-color: #1b517f !important;
}

/* Notification de partage */
.share-notification {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 99999;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    pointer-events: none;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        top: 100px;
        transform: translateX(-50%);
    }

    to {
        opacity: 1;
        top: 120px;
        transform: translateX(-50%);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        top: 120px;
        transform: translateX(-50%);
    }

    to {
        opacity: 0;
        top: 100px;
        transform: translateX(-50%);
    }
}

/* Styles pour le produit déjà dans le devis */
.aratice-product-widget .product-already-in-quote-wrapper {
    text-align: center;
    padding: 16px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 16px 0;
}

.aratice-product-widget .already-in-quote-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #7EAD53;
    font-weight: 500;
}

.aratice-product-widget .already-in-quote-message i {
    color: #7EAD53;
    font-size: 16px;
}

.aratice-product-widget .view-quote-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    background-color: var(--e-global-color-2f35788);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.aratice-product-widget .view-quote-button:hover {
    background-color: #5a6268;
    color: white;
    text-decoration: none;
}

.aratice-product-widget .view-quote-button i {
    font-size: 14px;
    color: white;
}

/* Contrôles de quantité dans le widget product-cart */
.aratice-product-widget .product-cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 8px;
}

.aratice-product-widget .product-cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #2B4B7C;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aratice-product-widget .product-cart-qty-btn:hover {
    background: #1e3454;
    transform: scale(1.05);
}

.aratice-product-widget .product-cart-qty-btn:active {
    transform: scale(0.95);
}

.aratice-product-widget .product-cart-qty-value {
    font-size: 18px;
    font-weight: 600;
    color: #2B4B7C;
    min-width: 30px;
    text-align: center;
    transition: transform 0.2s ease;
}

.aratice-product-widget .product-cart-qty-value.updating {
    animation: qtyPulse 0.3s ease;
}

@keyframes qtyPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Fiche technique PDF */
/* Fiche technique (bloc avec Consulter + Télécharger) */
.fiche-technique-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.fiche-technique-header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.fiche-technique-header .fa-file-pdf {
    font-size: 1.4rem;
    color: #dc2626;
    flex-shrink: 0;
}

.fiche-technique-title {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fiche-technique-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.fiche-technique-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Lexend', sans-serif;
}

.fiche-technique-btn-view {
    background: #163C79;
    color: #fff;
}

.fiche-technique-btn-view:hover {
    background: #0f2a5a;
    color: #fff;
    text-decoration: none;
}

.fiche-technique-btn-download {
    background: #fff;
    color: #163C79;
    border: 1px solid #163C79;
}

.fiche-technique-btn-download:hover {
    background: #163C79;
    color: #fff;
    text-decoration: none;
}

.fiche-technique-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .fiche-technique-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .fiche-technique-actions {
        width: 100%;
    }

    .fiche-technique-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
    }
}

/* Meta-row compacte (garantie · démo) */
.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: #475569;
}

.product-meta-row__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: inherit;
    line-height: 1.3;
    white-space: nowrap;
}

.product-meta-row__item--link {
    color: #163C79;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.product-meta-row__item--link span {
    text-decoration: none;
}

.product-meta-row__item--link:hover span,
.product-meta-row__item--link:focus-visible span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-meta-row__item--link:hover,
.product-meta-row__item--link:focus-visible {
    color: #163C79;
    text-decoration: none;
    opacity: 1;
}

.product-meta-row__item i {
    font-size: 1.4rem;
    color: #163C79;
    line-height: 1;
}

.product-meta-row__icon {
    width: 18px;
    height: 20px;
    flex-shrink: 0;
    fill: #163C79;
}

.product-meta-row__icon path {
    fill: #163C79;
}

.product-meta-row__sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #cbd5e1;
}

@media (max-width: 480px) {
    .product-meta-row__sep {
        display: none;
    }
    .product-meta-row {
        gap: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Modale démo YouTube */
.product-demo-modal[hidden] {
    display: none;
}

.product-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.product-demo-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-demo-modal__close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.product-demo-modal__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.product-demo-modal__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}