/* Structure principale harmonisée */
.arospen-catalogues-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px; /* Aligné sur la largeur du panier de la page boutique */
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

.arospen-pdf-col {
    width: 100%;
    height: 85vh;
}

.arospen-pdf-viewer {
    width: 100%;
    height: 100%;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 0 4px 5px rgba(0,0,0,.5);
}

/* Header (Sélecteur + Bouton plein écran) */
.arospen-catalogues-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.arospen-btn-fullscreen {
    background: transparent;
    color: #c389ce;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 700;
    transition: scale 0.3s ease !important;
}

.arospen-btn-fullscreen:hover {
    scale: 1.03;
}

/* Formulaire d'ajout manuel */
.panier-manuel-sticky {
    position: sticky;
    top: 80px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
    overflow: hidden;
}

.panier-manuel-form {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panier-manuel-inputs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arospen-input {
    flex: 1;
    min-width: 0;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 8px;
}

.arospen-input-qte {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    padding: 8px;
}

.catalogue_desc {
    font-size: 12px;
    color: #6c757d;
}

/* Formulaire d'ajout manuel sur mobile (dans la popup) */
.panier-manuel-form-mobile {
    padding: 15px 18px 0 18px;
    border-bottom: none;
}

.panier-titre-mobile {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

.panier-manuel-form-mobile .arospen-btn-ajouter {
    width: auto;
    padding: 8px 15px;
    font-weight: 700;
    transition: scale 0.3s ease !important;
}

.panier-manuel-form-mobile .arospen-btn-ajouter:hover {
    scale: 1.03;
}

/* Cacher le footer desktop au chargement */
#panier-manuel-footer {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .arospen-catalogues-wrapper { 
        display: block; 
    }
    .panier-manuel-sticky { 
        display: none; 
    }
}