

*{
    -webkit-tap-highlight-color: transparent;
}
.decotxt {
    margin: 70px;
    color: #333;
    font-weight: 500;
}

/* espace box */
.espacebox {
    text-align: center;
}

.header {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 430;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-top: 0px;
    width:100%;
    overflow-x: auto;
    scrollbar-width: none; 
}
.navigation::-webkit-scrollbar {
    display: none;
  }

.navigation button {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    position: relative;
}
.navigation button:hover {
    background-color: #ddd;
}
.navigation button:active {
    background-color: #bbb;
}

.sep {
    margin: auto;
    margin-top: 10px;
    width: 70%;
}

.content {
    margin: 20px 0;
    font-size: 16px;
    display: none;
}

.squares {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    margin-left: 8px !important;
    margin-right: 8px !important;
    color: rgb(186, 124, 79);
    overflow-x: auto;
}

@media screen and (min-width:760px) {
    .squares{
        justify-content: center !important;
    }
}


.square {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    border: 1px solid rgb(209, 91, 6);
    padding: 0px;
    min-width: 240px !important;
    max-width: 240px !important;
    height: 90px;
    border-radius: 5px;
    cursor: pointer;
}
/* .square:nth-child(1){
    background-color: #dc7928;
    color: #fff;
} */
.square:hover{
    background:#f77118;
    color: #fff;
}
.square.active{
    background-color: #ff6600;
    color: #fff;
}

.titresub {
    font-size: 19px;
    font-weight: 550;
}

.nb {
    margin-top: 0px;
    font-size: 25px;
    font-weight: 600;
}

.thanks {
    text-align: center;
    font-weight: 550;
    font-size: 20px;
}

/* articles vendus (solds) */

.articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.solds {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solds img {
    width: 200px;
    height: 250px;
}

.nom {
    font-size: 15px;
    font-weight: 500;
    margin-top: 5px;
    color: #7e7c7c;
}

.prixs {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.portsinfo {
    justify-content: center;
    align-items: center;
}

.sellnow {
    margin-top: 20px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: rgb(209, 91, 6);
    color: #fff;
    cursor: pointer;
}

.abinfo {
    justify-content: center;
    align-items: center;
}

.abinfos {
    font-size: 14px;
    cursor: pointer;
}

.payab, .moreab {
    color: rgb(209, 91, 6);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s ease-out;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.close {
    cursor: pointer;
    color: rgb(209, 91, 6);
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 15px;
}

p {
    margin-top: 20px;
}

/* section general( info user) */
.profile-container {
    background: white;
    width: 100%;
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 12px 40px rgba(0,0,0,0.1); */
    display: flex;
    gap: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.profile-container:hover {
    transform: translateY(-3px);
}

.profile-photo-section {
    flex: 1;
    text-align: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

.contact-button {
    background: linear-gradient(135deg, #ff6600, #f4690d);
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.3s ease;
}

.contact-button:hover {
    opacity: 0.9;
}

.profile-info-section {
    flex: 2;
}

.user-name {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 2em;
}

.user-title {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.info-item-parent{
    display: flex;
    align-items: center;
    /*padding: 12px;
    */background: #f8f9fa;
    border-radius: 10px;
    height: 60px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.info-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    height: 95%;
    width: 100%;
    outline: none;
    border: none;
    padding-left: 38px;
    font-weight: 600;
    font-size: 1.1em;
    color: #34495e;
    pointer-events: none;
    
}
.info-item.active{
    border: 2px solid #343535;
    pointer-events: all;
}
.btnEditInfoUser{
    display: none;
    height: 95.4%;
    width: 60px;
    border-radius: 0 14px 14px 0;
    border: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #343535;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    cursor: pointer;
}
.btnEditInfoUser.active{
    display: block;
}

.info-item i {
    width: 30px;
    color: #000000ba;
    font-size: 1.1em;
}

.info-content {
    color: #34495e;
    font-size: 0.95em;
}

.bio-section {
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
    color: #7f8c8d;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: #ff6600;
    font-weight: 600;
    font-size: 1.2em;
}

.stat-label {
    color: #606060;
    font-size: 0.85em;
    margin-top: 4px;
}
@media (max-width: 850px) {
    .profile-container {
        width: 98%;
        flex-direction: column;
        padding: 25px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;

        background-color: #eae7e757 !important;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }

    .navigation-carousel-parent{
        width: 98% !important;
    }
    .hr{
        display: none !important;
    }

    .navigation{
       margin-left: 6px;
       margin-right: 6px;
       margin-bottom: 10px;
    }
    .navigation button{
        height: 50px !important;
        width: 200px !important;
        display: flex; align-items: center;
        justify-content: center !important;
    }

    .containerBtnCarouselMenu{
        display: none;
    }

    .container-rech-tri-article-dans-sect-bouti{
        display: block !important;
        text-align: center !important;
        width: 98% !important;
    }

    .container-rech-tri-article-dans-sect-bouti div:nth-child(2){
        justify-content: center;
    }
}

@media screen and (min-width:471px){
    .dropdown-boutique-tri, .dropdown-boutique{
        background-color: #ff6600;
}
    .dropdown-boutique-tri{
        margin-left: 2px;
    }

    .dropdown-boutique-tri button,
    .dropdown-boutique button,
    .dropdown-boutique-tri button i,
    .dropdown-boutique button i{
        color: #fff !important;
}
    .dropdown-boutique-tri button, .dropdown-boutique button{
        border-radius: 6px !important;
        -webkit-border-radius: 69px !important;
        -moz-border-radius: 6px !important;
        -ms-border-radius: 6px !important;
        -o-border-radius: 6px !important;
        padding: 8px;
}
}
@media screen and (max-width:470px) {
    .dropdown-menu-boutique-tri, .dropdown-menu-boutique{
        max-width: 100% !important; width: 100% !important;;
    }
    .dropdown-boutique-tri, .dropdown-boutique{
        width: 100% !important;
        background-color: #ff6600;
        margin-top: -1px !important;
    }
    .dropdown-boutique-tri button,
    .dropdown-boutique button,
    .dropdown-boutique-tri button i,
    .dropdown-boutique button i{
        color: #fff !important;
    }
    .dropdown-toggle-boutique-tri::after{
        /* content: 'par :'; */
        margin-left: 6px;
    }
}




/* style tableau commande &  portefeuille */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    /*box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    */border-radius: 12px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.orders-table thead {
    background: #d97706;
    color: white;
}

.orders-table th,
.orders-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.95em;
}

.orders-table th {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.orders-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.orders-table tbody tr:hover {
    background: #f8fafc;
}
.orders-table tbody tr.no-hover:hover {
    background-color: inherit; /* Pas de changement de fond */
    cursor: default; /* Curseur par défaut */
}

.orders-table tbody tr:last-child {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-delivered {
    background: #dcfce7;
    color: #16a34a;
}

.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.action-btn:hover {
    background: #d97706;
    color: white;
    border-color: #d97706;
}

.total-row {
    font-weight: 600;
    background: #fffcf5;
}

@media (max-width: 768px) {
    .orders-table {
        display: block;
        overflow-x: auto;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 1rem;
        min-width: 150px;
    }
}



/* dropdown bouton boutique vendeur */
/* Style du conteneur du dropdown */
.dropdown-boutique, .dropdown-boutique-tri {
    position: relative;
    display: inline-block;
}

/* Style du bouton */
.dropdown-toggle, .dropdown-toggle-boutique-tri {
    height: 100%;
    background-color: inherit;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1px;
    padding: 10px;
}

/* Style du menu */
.dropdown-menu-boutique, .dropdown-menu-boutique-tri {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    -moz-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    -ms-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    -o-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    overflow-x: auto;
}

/* Style des éléments du menu */
.dropdown-item-boutique {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 6px 6px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background 0.2s;
    width: 100%;
}

.dropdown-item-boutique:hover {
    background: lightgray;
    color: #333;
}

/* Affichage du menu lorsqu'il est actif */
.dropdown-boutique.active .dropdown-menu-boutique, 
.dropdown-boutique-tri.active .dropdown-menu-boutique-tri {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




.commande-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid #d97706;
}

.commande-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.commande-info {
    display: flex;
    gap: 1.5rem;
    color: #64748b;
}

.commande-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commande-status {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.produit-list {
    padding: 1.5rem;
}

.produit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.produit-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-details {
    flex: 1;
    min-width: 0;
}

.produit-titre {
    font-size: 1.1em;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: start;
}

.produit-meta {
    display: flex;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.produit-prix {
    margin-left: auto;
    text-align: right;
    min-width: 120px;
}

.prix-unitaire {
    color: #94a3b8;
    font-size: 0.9em;
}

.prix-total {
    font-weight: 600;
    color: #d97706;
    font-size: 1.1em;
}

.commande-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.total-container {
    text-align: right;
}

.total-label {
    color: #64748b;
    font-size: 0.9em;
}

.total-montant {
    font-size: 1.6em;
    font-weight: 700;
    color: #1e293b;
}

@media (max-width: 768px) {
    .produit-item {
        flex-direction: column;
        gap: 1rem;
    }

    .produit-image {
        flex: none;
        height: 150px;
    }

    .produit-prix {
        margin-left: 0;
        text-align: left;
    }

    .commande-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
   

    .produit-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .commande-header {
        padding: 1rem;
    }
}


/* modal pour confirmation d'article dispo du cote du vendeur */
/* Base stylistique */
#boutique-commande-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: boutique-commande-fadeIn 0.4s ease-out;
}

.boutique-commande-modal__content {
    background: white;
    border-radius: 16px;
    width: 98%;
    max-width: 770px;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* En-tête */
#boutique-commande-modal__header {
    padding: 1rem;
    background: #ff6600;
    color: white;
    border-radius: 16px 16px 0 0;
    position: relative;
}

#boutique-commande-modal__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Corps du modal */
.boutique-commande-modal__body {
    padding: 0.8rem;
    padding-top: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Pied de page */
#boutique-commande-modal__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Boutons */
.boutique-commande-modal__btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.boutique-commande-modal__btn--primary {
    background: #ff6600;
    color: white;
}

.boutique-commande-modal__btn--secondary {
    background: #f7fafc;
    color: #718096;
    border: 1px solid #cbd5e0;
}

/* Fermeture */
.boutique-commande-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes boutique-commande-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.boutique-commande-modal__show .boutique-commande-modal__content {
    transform: scale(1);
}

/* Interactions */
.boutique-commande-modal__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.boutique-commande-modal__close:hover {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 480px) {
    .boutique-commande-modal__content {
        width: 95%;
    }
    
    #boutique-commande-modal__footer {
        flex-direction: column;
    }
    
    .boutique-commande-modal__btn {
        width: 100%;
    }
}



/* style pour le modal de retrait d'argent */

/* Bouton d'ouverture du modal */
.open-modal-retrait-argent {
  background-color: #d97706;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 20px;
}

.open-modal-retrait-argent:hover {
  background-color: #bf6905;
}

/* Modal overlay avec effet de flou */
.modal-retrait-argent {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Contenu du modal */
.modal-content-retrait-argent {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.3s ease-in-out;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Bouton de fermeture */
.close-retrait-argent {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-retrait-argent:hover {
  color: #666;
}

/* Titre du modal */
.modal-title-retrait-argent {
  margin: 0 0 20px;
  color: #d97706;
  text-align: center;
  font-size: 24px;
}

/* Groupes de champs du formulaire */
.form-group-retrait-argent {
  margin-bottom: 15px;
}

.form-group-retrait-argent label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group-retrait-argent input,
.form-group-retrait-argent select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group-retrait-argent input:focus,
.form-group-retrait-argent select:focus {
  border-color: #d97706;
}

/* Message d'erreur pour le numéro de téléphone */
.error-message-retrait-argent {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* Bouton de confirmation */
.btn-confirm-retrait-argent {
  width: 100%;
  background-color: #d97706;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-confirm-retrait-argent:hover {
  background-color: #bf6905;
}

/* Bouton désactivé */
.btn-confirm-retrait-argent:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}



/* les cartes pour les abonnements */
.souscription-page {
  font-family: 'Helvetica Neue', sans-serif;
  background: inherit;
  margin: 0;
  padding: 20px;
}
.page-title {
  text-align: center;
  color: #d97706;
  margin-bottom: 30px;
}
.souscription-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.card-souscription {
  background: #fff;
  border: 2px solid #d97706;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-souscription:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.card-title-souscription {
  color: #d97706;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}
.card-price-souscription {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}
.card-benefits-souscription {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: start !important;
  
}
.card-benefits-souscription li {
  margin-bottom: 0px;
  line-height: 1.4;
  padding-left: 0px;
  position: relative;
  text-align: start !important;
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  vertical-align: top;
}

.btn-select-souscription {
  background-color: #d97706;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.btn-select-souscription:hover {
  background-color: #bf6905;
}




/* resumer abonnement vendeur */
.resume-page {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: inherit;
  margin: 0;
  padding: 20px;
}
.resume-title {
  text-align: center;
  color: #d97706;
  margin-bottom: 30px;
  font-size: 26px;
}
.resume-container {
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid #d97706;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.resume-name {
  font-size: 22px;
  color: #d97706;
  font-weight: bold;
}
.resume-price {
  font-size: 20px;
  color: #333;
}
.resume-benefits {
  list-style: none;
  padding: 0;
  
}
.resume-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}
.resume-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d97706;
  font-size: 16px;
}




/* style pour la creation de boutique */
.create-store-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    animation: create-store-fadeIn 0.3s ease-in-out;
    overflow: auto;
    z-index: 20000;
  }    

  .create-store-content {
    background-color: #fff;
    margin: 10px auto;
    padding: 25px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }    

  .create-store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }    

  .create-store-header h2 {
    margin: 0;
    color: #2d3436;
    font-size: 1.8rem;
  }    

  .create-store-close {
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s;
  }    

  .create-store-close:hover {
    transform: scale(1.2);
  }    

  .create-store-form-group {
    margin-bottom: 20px;
  }    

  .create-store-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #636e72;
    font-weight: 500;
  }    

  .create-store-input,
  .create-store-select,
  .create-store-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }    

  .create-store-input:focus,
  .create-store-select:focus,
  .create-store-textarea:focus {
    border-color: #ff6600;
    outline: none;
  }    

  .create-store-textarea {
    resize: vertical;
    min-height: 100px;
  }    

  .create-store-form-row {
    display: flex;
    gap: 15px;
  }    

  .create-store-form-col {
    flex: 1;
  }    

  .create-store-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }    

  .create-store-file-label:hover {
    background-color: #e9ecef;
  }    

  .create-store-file-input {
    display: none;
  }    

  .create-store-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }    

  .create-store-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #ff6600;
  }    

  .create-store-submit {
    width: 100%;
    padding: 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }    

  .create-store-submit:hover {
    background-color: #ff6600;
  }    

  @keyframes create-store-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }    

  @media (max-width: 768px) {
    .create-store-form-row {
      flex-direction: column;
    }
    
    .create-store-content {
      margin: 10% auto;
      width: 95%;
    }
  }



  /* style pour les nombre de le boutique abonne et like de lutilisateur connecte */
  .container-nbr-abonne-like-user-connected {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: #f4d0b7;
    border-radius: 6px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
    width: 100%;
    margin: 20px auto;
}

.btn-nbr-abonne-like-user-connected {
    flex: 1;
    padding: 2px 2px;
    border: none;
    border-radius: 6px;
    background: #ff6600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    height: 65px;
}

.btn-nbr-abonne-like-user-connected:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(219, 131, 58, 0.4);
}

.btn-nbr-abonne-like-user-connected::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-nbr-abonne-like-user-connected:hover::after {
    left: 50%;
    top: 50%;
}

.count-nbr-abonne-like-user-connected {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Arial', sans-serif;
}

.label-nbr-abonne-like-user-connected {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: 'Segoe UI', sans-serif;
}

.icon-nbr-abonne-like-user-connected {
    font-size: 15px;
    margin-bottom: 0px;
    color: rgba(255,255,255,0.9);
}




/* pour l'offcanva */
.offcanvas-container {
    --main-color: #db833a;
    --accent-color: #ffaa6a;
    position: fixed;
    top: 0;
    max-width: 320px;
    width: 100%;
    height: 100vh;
    background: linear-gradient(145deg, #ffffff 85%, var(--main-color) 100%);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20000;
    padding: 25px;
    transform: translateX(-100%);
}        

.offcanvas-container.active {
    transform: translateX(0);
}


.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(219, 131, 58, 0.15);
}

.offcanvas-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.5em;
    color: #ff6600;
    letter-spacing: -0.5px;
    font-weight: 700;
    position: relative;
}

.offcanvas-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6600
}

.close-btn {
    background: #ff6600;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: grid;
    place-items: center;
}

.close-btn:hover {
    transform: rotate(90deg);
    background: #f76f14;
}

.boutique-list {
    display: grid;
    gap: 12px;
    padding: 10px 0;
}

.boutique-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.boutique-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(219, 131, 58, 0.15);
}

.boutique-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff6600;
    opacity: 0;
    transition: opacity 0.3s;
}

.boutique-card:hover::before {
    opacity: 1;
}

.boutique-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid rgba(219, 131, 58, 0.1);
    padding: 3px;
}

.boutique-info {
    flex: 1;
}

.boutique-name {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    font-size: 1.05em;
}

.boutique-category {
    font-size: 0.85em;
    color: var(--main-color);
    opacity: 0.8;
}
