/* ====================================
   DASHBOARD STYLESHEET
   ====================================
   1. Variables et configuration
   2. Layout principal du dashboard
   3. Barre latérale (Sidebar)
   4. Sections du contenu principal
      a. Vue d'ensemble (Résumé)
      b. Commandes
      c. Programme fidélité
      d. Parrainage
      e. Liste de souhaits
      f. Paramètres
      g. Support
   5. Composants UI spécifiques
      a. Cartes statistiques
      b. Tableaux de données
      c. Formulaires et champs
      d. Modales
   6. Animations et transitions
   7. Media queries
   ==================================== */

/* 1. Variables et configuration
   ================================== */
:root {
    /* Couleurs principales */
    --primary-color: #6c5ce7;        /* Violet vif */
    --primary-dark: #5641e5;         /* Violet foncé pour hover */
    --secondary-color: #00cec9;      /* Turquoise */
    --secondary-dark: #00a8a3;       /* Turquoise foncé */
    --tertiary-color: #fd79a8;       /* Rose */
    
    /* Couleurs des états */
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --processing-color: #3498db;
    --pending-color: #f39c12;
    --delivered-color: #2ecc71;
    --cancelled-color: #e74c3c;
    
    /* Niveaux de fidélité */
    --bronze-gradient: linear-gradient(145deg, #cd7f32, #8c5523);
    --silver-gradient: linear-gradient(145deg, #c0c0c0, #a9a9a9);
    --gold-gradient: linear-gradient(145deg, #ffd700, #b8860b);
    
    /* Dégradés et fonds */
    --gradient-bg: linear-gradient(135deg, #6c5ce7, #00cec9);
    --sidebar-bg: #2d3436;
    --content-bg: #f5f5f5;
    --card-bg: #ffffff;
    
    /* Ombres et effets */
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --input-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* Espacement et dimensions */
    --spacing-unit: 20px;
    --border-radius: 8px;
    --sidebar-width: 250px;
    --header-height: 70px;
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition-function: ease;
}

/* 2. Layout principal du dashboard
   ================================== */
#dashboard-hero {
    background: var(--gradient-bg);
    padding: 40px 0;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    position: relative;
}

#dashboard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/images/ui/background/pattern-dot.png');
    opacity: 0.1;
    z-index: 1;
}

#dashboard-hero .container {
    position: relative;
    z-index: 2;
}

#dashboard-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#dashboard-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

#dashboard-content {
    padding: 0 0 60px;
}

.dashboard-wrapper {
    display: flex;
    gap: 30px;
    position: relative;
}

/* Ajout d'une classe pour le dégradé de fond */
.gradient-bg {
    background: var(--gradient-bg);
    position: relative;
}

/* Style pour la notice de développement */
.dev-notice {
    background-color: #ffe9e3;
    color: #d63031;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dev-notice i {
    font-size: 1rem;
}

.dev-notice strong {
    font-weight: 600;
}

/* Style pour le logo dans le header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    width: 40px;
    height: auto;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--primary-color);
}

header nav a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* 3. Barre latérale (Sidebar)
   ================================== */
.dashboard-sidebar {
    width: var(--sidebar-width);
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 25px 0;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: calc(100vh - var(--header-height) - 40px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-profile {
    padding: 0 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f1f1f1;
    border: 3px solid var(--primary-color);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-info h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Dashboard Navigation - Style vertical */
.dashboard-nav {
    margin-top: 25px;
}

.dashboard-nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) var(--transition-function);
    font-weight: 500;
}

.dashboard-nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.dashboard-nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive styles for dashboard navigation */
@media (max-width: 768px) {
    .dashboard-sidebar {
        padding: 20px 15px;
    }
    
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        margin-bottom: 20px;
        border-radius: var(--border-radius);
        position: relative;
    }

    .user-profile {
        margin-bottom: 10px;
    }
}

.logout-container {
    padding: 20px 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: #f8f8f8;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.logout-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.logout-btn:hover {
    background-color: #fee;
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

/* 4. Sections du contenu principal
   ================================== */
.dashboard-main {
    flex: 1;
    min-width: 0;
}

.dashboard-section {
    display: none;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 30px;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

.dashboard-section.active {
    display: block;
}

.section-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.section-header h3 {
    margin: 0;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.section-header h3 i {
    margin-right: 12px;
    color: var(--primary-color);
}

.dashboard-section h4 {
    margin: 30px 0 15px;
    font-size: 1.25rem;
    color: #333;
}

/* a. Vue d'ensemble (Résumé) */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform var(--transition-speed) var(--transition-function), box-shadow var(--transition-speed) var(--transition-function);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-card:nth-child(1) .stat-icon {
    background-color: var(--primary-color);
}

.stat-card:nth-child(2) .stat-icon {
    background-color: var(--info-color);
}

.stat-card:nth-child(3) .stat-icon {
    background-color: var(--success-color);
}

.stat-card:nth-child(4) .stat-icon {
    background-color: var(--tertiary-color);
}

.stat-content {
    flex: 1;
}

.stat-content h4 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #666;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.activity-section {
    margin: 30px 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.activity-item:hover {
    background-color: #f1f1f1;
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.activity-item:nth-child(1) .activity-icon {
    background-color: var(--primary-color);
}

.activity-item:nth-child(2) .activity-icon {
    background-color: var(--info-color);
}

.activity-item:nth-child(3) .activity-icon {
    background-color: var(--success-color);
}

.activity-details {
    flex: 1;
}

.activity-details h5 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.activity-details p {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #666;
}

.activity-time {
    font-size: 0.8rem;
    color: #999;
}

.recommendations {
    margin-top: 30px;
}

.product-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.recommended-product {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    transition: transform var(--transition-speed) var(--transition-function), box-shadow var(--transition-speed) var(--transition-function);
}

.recommended-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.recommended-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.recommended-product h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.recommended-product p {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: #666;
}

.recommended-product .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

/* Style du footer */
footer {
    background-color: #2d3436;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* b. Commandes */
.orders-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.orders-filter select {
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    background-color: white;
    min-width: 200px;
}

.search-box {
    display: flex;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.orders-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.orders-table th, 
.orders-table td {
    padding: 12px 15px;
}

.orders-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--primary-color);
}

.orders-table tr {
    border-bottom: 1px solid #eee;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.orders-table tr:hover {
    background-color: #f9f9f9;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.status-badge.processing {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--processing-color);
}

.status-badge.pending {
    background-color: rgba(243, 156, 18, 0.1);
    color: var(--pending-color);
}

.status-badge.delivered {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--delivered-color);
}

.status-badge.cancelled {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--cancelled-color);
}

.status-badge.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
}

.order-details-btn {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.order-details-btn:hover {
    background-color: var(--primary-dark);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-function);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn:hover:not(.active):not([disabled]) {
    background-color: #f5f5f5;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* c. Programme fidélité */
.loyalty-summary {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.loyalty-card {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
}

.loyalty-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.loyalty-card-header h4 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.loyalty-tier {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.bronze-tier {
    background: linear-gradient(145deg, rgba(205, 127, 50, 0.7), rgba(233, 150, 122, 0.7));
    border: 1px solid rgba(205, 127, 50, 0.3);
    box-shadow: 0 2px 5px rgba(205, 127, 50, 0.2);
}

.bronze-tier i {
    color: #ffd700;
    margin-right: 6px;
    filter: drop-shadow(0 0 1px rgba(255, 215, 0, 0.5));
}

.loyalty-card-body {
    padding: 30px 20px;
    text-align: center;
}

.loyalty-points-display {
    margin-bottom: 20px;
}

.points-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-right: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.points-label {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

.loyalty-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.8;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.loyalty-status {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tier-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.tier-progress::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.tier-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    background-color: #e0e0e0;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tier-level span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.tier-level.active .tier-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tier-level.active span {
    font-weight: 700;
    color: #333;
}

.tier-level.bronze.active .tier-icon {
    background: linear-gradient(145deg, #cd7f32, #e9967a);
    color: white;
}

.tier-level.silver.active .tier-icon {
    background: linear-gradient(145deg, #c0c0c0, #e0e0e0);
    color: #666;
}

.tier-level.gold.active .tier-icon {
    background: linear-gradient(145deg, #ffd700, #ffcc00);
    color: #8B4513;
}

.progress-container {
    margin-top: 30px;
}

.progress-bar {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    border-radius: 6px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.progress-labels {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.loyalty-benefits {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefits-list {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    list-style: none;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.benefits-list li i.fa-check-circle {
    color: #2ecc71;
}

.benefits-list.locked li i.fa-lock {
    color: #e74c3c;
}

.loyalty-conversion {
    margin-top: 40px;
}

.conversion-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.conversion-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conversion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.conversion-header {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    color: white;
    padding: 25px 0;
    text-align: center;
    font-size: 2rem;
}

.conversion-body {
    padding: 20px;
    text-align: center;
}

.conversion-body h5 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #333;
}

.conversion-body p {
    margin: 0 0 20px;
    color: #666;
}

.use-points-btn {
    width: 100%;
    padding: 10px;
}

.use-points-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f1f1f1;
    color: #999;
    border-color: #ddd;
}

/* d. Parrainage */
.referral-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.referral-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    flex: 2;
    min-width: 300px;
}

.referral-stats {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card.large {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 25px;
}

.stat-card.large .stat-icon {
    margin: 0 auto 15px;
}

.stat-card.large .stat-value {
    font-size: 2.5rem;
}

.referral-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.referral-link-container input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    font-size: 0.9rem;
}

.sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.discord {
    background-color: #7289da;
}

.share-btn.email {
    background-color: #ea4335;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.referral-link {
    display: flex;
    margin-top: 10px;
}

.referral-link input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: #f5f5f5;
    font-size: 0.9rem;
    color: #333;
}

.copy-btn {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.copy-btn:hover {
    background-color: var(--primary-dark);
}

.share-options {
    margin-top: 25px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity var(--transition-speed) var(--transition-function);
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.email {
    background-color: #ea4335;
}

.referrals-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.referrals-table th, 
.referrals-table td {
    padding: 12px 15px;
    text-align: left;
}

.referrals-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--primary-color);
}

.referrals-table tr {
    border-bottom: 1px solid #eee;
}

.referrals-table tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .referral-stats {
        grid-template-columns: 1fr;
    }
    
    .referral-link-container {
        flex-direction: column;
    }
    
    .referral-link-container input {
        width: 100%;
    }
    
    .benefit-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
}

/* e. Liste de souhaits */
.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    display: flex;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-function), box-shadow var(--transition-speed) var(--transition-function);
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.wishlist-item-image {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    padding: 20px;
    flex: 1;
}

.wishlist-item-details h4 {
    margin: 0 0 10px;
}

.item-specs {
    color: #666;
    margin: 0 0 15px;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    border-left: 1px solid #eee;
}

.add-to-cart-btn {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-dark);
}

.remove-from-wishlist {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    color: #e74c3c;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 auto;
    transition: all var(--transition-speed) var(--transition-function);
}

.remove-from-wishlist:hover {
    background-color: #e74c3c;
    color: white;
}

.wishlist-empty {
    text-align: center;
    padding: 50px 0;
}

.wishlist-empty i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.wishlist-empty h4 {
    margin: 0 0 10px;
}

.wishlist-empty p {
    margin: 0 0 20px;
    color: #777;
}

.hidden {
    display: none;
}

/* f. Paramètres */
.settings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.settings-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
}

.settings-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.danger-zone {
    border: 1px solid #ffeded;
}

.danger-zone h4 {
    color: var(--danger-color);
}

.danger-actions {
    margin-top: 20px;
}

.danger-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffeded;
    border-radius: var(--border-radius);
}

.danger-info h5 {
    margin: 0 0 5px;
    color: var(--danger-color);
}

.danger-info p {
    margin: 0;
    font-size: 0.9rem;
}

.danger-btn {
    padding: 10px 15px;
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.danger-btn:hover {
    background-color: #c0392b;
}

/* g. Support */
.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.support-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: transform var(--transition-speed) var(--transition-function), box-shadow var (--transition-speed) var (--transition-function);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.support-card h4 {
    margin: 0 0 10px;
}

.support-card p {
    margin: 0 0 20px;
    color: #777;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.support-card .primary-btn {
    width: 100%;
}

.faq-section {
    margin: 30px 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color var(--transition-speed) var(--transition-function);
}

.accordion-header h5 {
    margin: 0;
    font-weight: 500;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform var(--transition-speed) var(--transition-function);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-function);
}

.accordion-item.active .accordion-content {
    padding: 15px 20px;
    max-height: 200px;
}

.accordion-item.active .accordion-header {
    background-color: rgba(108, 92, 231, 0.1);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.support-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    margin-top: 15px;
}

.support-form textarea {
    resize: vertical;
}

/* 5. Composants UI spécifiques
   ================================== */
/* Modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: color var(--transition-speed) var(--transition-function);
}

.close:hover {
    color: var(--primary-color);
}

.modal h2 {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 1.5rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.order-status-timeline {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-item.active .timeline-icon {
    background-color: var(--primary-color);
    color: white;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    margin: 0 0 5px;
    color: #333;
}

.timeline-content p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.order-detail-products {
    margin: 30px 0;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.order-product img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.product-details {
    flex: 1;
}

.product-details h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.product-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.order-summary {
    margin: 30px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.address-box {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var (--border-radius);
    margin-top: 15px;
}

.order-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-function);
    text-decoration: none;
}

.secondary-btn:hover {
    background-color: rgba(108, 92, 231, 0.05);
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color var(--transition-speed) var(--transition-function);
    text-decoration: none;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* 6. Animations et transitions
   ================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

/* 7. Media queries
   ================================== */
@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        padding-bottom: 0;
    }
    
    .dashboard-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .dashboard-nav ul {
        display: flex;
        padding: 0 15px;
        min-width: max-content;
    }
    
    .dashboard-nav-link {
        padding: 12px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    
    .dashboard-nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .logout-container {
        padding: 15px 20px;
    }
    
    .loyalty-summary, .referral-info {
        flex-direction: column;
    }
    
    .tier-progress {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    header nav.active {
        display: block;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    header nav.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    header nav.active li {
        border-bottom: 1px solid #eee;
    }
    
    header nav.active a {
        padding: 15px 20px;
        display: flex;
    }
}

@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .activity-section, .recommendations, .loyalty-summary, .referral-info {
        margin-top: 20px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .settings-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .wishlist-item {
        flex-direction: column;
    }
    
    .wishlist-item-image {
        width: 100%;
        height: 180px;
    }
    
    .wishlist-item-actions {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid #eee;
        padding: 15px;
    }
    
    .wishlist-item-actions .add-to-cart-btn {
        flex: 1;
    }
    
    .remove-from-wishlist {
        margin: 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 40px auto;
        padding: 20px;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .order-actions .primary-btn, 
    .order-actions .secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-section {
        padding: 20px;
    }
    
    .orders-filter {
        flex-direction: column;
    }
    
    .search-box {
        max-width: none;
    }
    
    .danger-action {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .empty-state {
        padding: 30px 15px;
    }
    
    .empty-state i {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .product-recommendations {
        grid-template-columns: 1fr;
    }
    
    .tier-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-labels {
        font-size: 0.8rem;
    }
    
    .support-options {
        flex-direction: column;
    }
    
    .loyalty-card-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .referral-link {
        flex-direction: column;
    }
    
    .referral-link input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .copy-btn {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        width: 100%;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
    }
    
    .dashboard-hero h2 {
        font-size: 1.8rem;
    }
    
    .dashboard-hero p {
        font-size: 1rem;
    }
    
    .user-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h3 {
        font-size: 1.4rem;
    }
    
    .list-item, .order-item, .activity-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .list-item-action, .order-item-actions {
        margin-left: 0;
        margin-top: 15px;
        align-self: flex-end;
    }
    
    .order-item-status {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .order-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* État vide pour les sections sans données */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f9fc;
    border-radius: 12px;
    border: 1px dashed #d1d9e6;
    margin: 20px 0;
}

.empty-state i {
    font-size: 3.5rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-state h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #555;
}

.empty-state p {
    margin: 0 0 5px;
    color: #666;
    max-width: 450px;
    line-height: 1.6;
}

.empty-state .empty-state-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #999;
}

.empty-state .primary-btn {
    margin-top: 15px;
}

/* Bronze tier styles */
.bronze-tier {
    background-color: rgba(205, 127, 50, 0.3);
}

.tier-level.bronze.active .tier-icon {
    background: var(--bronze-gradient);
}

/* Style pour afficher les informations sous forme de liste */
.list-view {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.list-item:hover {
    background-color: #f1f1f1;
    transform: translateX(5px);
}

.list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    background-color: var(--primary-color);
    flex-shrink: 0;
    margin-right: 15px;
}

.list-item-content {
    flex: 1;
    min-width: 0;
}

.list-item-content h5 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.list-item-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.list-item-action {
    margin-left: 15px;
}

/* Format spécifique pour les commandes */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.order-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.order-item:hover {
    background-color: #f1f1f1;
    transform: translateX(5px);
}

.order-item-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-item-id {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.order-item-date {
    font-size: 0.9rem;
    color: #777;
}

.order-item-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.order-item-product {
    font-weight: 500;
    margin-bottom: 5px;
}

.order-item-price {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.order-item-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.order-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}