/* === CORRECTIONS RESPONSIVE PRESTASHOP === */
/* Version finale avec ciblage précis des éléments */

/* ========================================
   1. CORRECTION FORMULAIRE CODE PROMO
   ======================================== */
/* Conteneur principal du formulaire promo */
.cart-voucher .promo-code form {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

/* Input code promo */
.cart-voucher .promo-input,
.promo-code input[name="discount_name"] {
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
}

/* Bouton Ajouter */
.cart-voucher .promo-code button[type="submit"],
.promo-code .btn-primary {
    flex-shrink: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

/* Mobile : ajustements */
@media (max-width: 767px) {
    .cart-voucher .promo-code {
        padding: 15px !important;
    }
    
    .cart-voucher .promo-code form {
        max-width: 100% !important;
    }
    
    /* Réduire la taille du bouton sur très petits écrans */
    @media (max-width: 360px) {
        .cart-voucher .promo-code button[type="submit"] {
            padding: 0.375rem 0.75rem !important;
            font-size: 0.875rem !important;
        }
    }
}

/* ========================================
   2. ESPACEMENT BREADCRUMB / CONTENU
   ======================================== */
/* Ciblage spécifique PrestaShop */
#wrapper .breadcrumb {
    margin-bottom: 10px !important;
    padding: 5px 0 !important;
}

/* Page title sur pages produit */
#main .page-title-wrapper,
.product-page .page-title-wrapper {
    padding-bottom: 5px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 767px) {
    #wrapper .breadcrumb {
        margin-bottom: 5px !important;
    }
    
    #main .page-title-wrapper {
        padding-bottom: 0 !important;
        margin-bottom: 5px !important;
    }
}

/* ========================================
   3. CORRECTION FORMULAIRES CHECKOUT
   ======================================== */
/* Formulaire informations personnelles */
#checkout-personal-information-step .form-group {
    margin-bottom: 1rem !important;
}

/* Alignement des champs */
#checkout-personal-information-step input[type="text"],
#checkout-personal-information-step input[type="email"],
#checkout-personal-information-step input[type="tel"],
#checkout-personal-information-step input[type="password"] {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Boutons radio (Mr./Mrs.) */
#checkout-personal-information-step .radio-inline {
    margin-right: 15px !important;
}

/* Mobile : ajustements spécifiques */
@media (max-width: 767px) {
    /* Conteneurs principaux */
    .cart-grid-body,
    .cart-grid-right {
        padding: 0 10px !important;
    }
    
    /* Cards et conteneurs */
    .cart-container,
    .cart-summary {
        margin-bottom: 20px !important;
    }
    
    /* Formulaires checkout */
    #checkout-personal-information-step .form-group {
        padding: 0 5px !important;
    }
}

/* ========================================
   4. ONGLETS PRODUIT (si nécessaire)
   ======================================== */
@media (max-width: 639px) {
    /* Onglets PrestaShop natifs */
    .product-tabs .nav-tabs,
    #main .tabs .nav-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    
    .product-tabs .nav-tabs::-webkit-scrollbar {
        display: none !important;
    }
    
    .product-tabs .nav-item,
    #main .tabs .nav-item {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .product-tabs .nav-link,
    #main .tabs .nav-link {
        padding: 10px 15px !important;
        white-space: nowrap !important;
        font-size: 14px !important;
    }
}

/* ========================================
   5. BOUTONS SPÉCIFIQUES
   ======================================== */
/* Bouton continuer mes achats */
.cart-grid-body .btn-continue {
    margin: 20px 0 !important;
}

/* Boutons du checkout */
.checkout-step button[type="submit"],
.form-footer .continue {
    padding: 10px 20px !important;
    font-size: 16px !important;
}

@media (max-width: 767px) {
    /* Tous les boutons en mobile */
    .btn,
    button[type="submit"] {
        touch-action: manipulation !important;
        min-height: 44px !important; /* Taille minimale Apple */
    }
}

/* ========================================
   6. SECTIONS LOGOS (ELEMENTOR)
   ======================================== */
@media (max-width: 767px) {
    /* Section spécifique avec data-id */
    [data-id="x7725is"] .elementor-row,
    .elementor-element-x7725is .elementor-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    [data-id="x7725is"] .elementor-column {
        flex: 0 0 auto !important;
        width: 20% !important;
        min-width: 80px !important;
    }
}

/* ========================================
   7. CORRECTIONS GLOBALES MOBILE
   ======================================== */
@media (max-width: 767px) {
    /* Empêcher le débordement horizontal */
    #wrapper {
        overflow-x: hidden !important;
    }
    
    /* Padding général des colonnes */
    .col-xs-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Marges des cards */
    .card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}