/*
Theme Name: Thème E-commerce Lebenefique
Description: Un thème e-commerce moderne avec une palette élégante noir-blanc-gris et #B6A083
Version: 1.0
Author: Lebenefique
*/

/* Import fonts from Google Fonts to match AsEver style */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700&display=swap');

/* Réinitialisation globale et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #574b37;
    background-color: #f7f6f2;
    font-weight: 300;
}

/* Conteneur - AsEver style with better spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Styles d'en-tête - AsEver style */
header {
    background-color: rgba(247, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 173, 132, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #574b37;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Assistant', sans-serif;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #c5ad84;
}

/* Styles de navigation - AsEver style */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #574b37;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #c5ad84;
    background: none;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #c5ad84;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Icône du panier - AsEver style */
.cart-icon {
    position: relative;
}

.cart-icon a {
    color: #574b37;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon a:hover {
    color: #c5ad84;
}

.cart-count {
    background-color: #c5ad84;
    color: #f8f6f3;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 0.7rem;
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 20px;
    text-align: center;
    font-weight: 400;
}

/* Zone de contenu principal - AsEver style */
main {
    min-height: 60vh;
    padding: 3rem 0;
    background-color: #f7f6f2;
}

/* Grille de produits - AsEver style */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(197, 173, 132, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 173, 132, 0.15);
    border-color: #c5ad84;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #574b37;
    font-family: 'Assistant', sans-serif;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 400;
    color: #c5ad84;
    margin-bottom: 1rem;
    font-family: 'Assistant', sans-serif;
}

.add-to-cart-btn {
    background-color: #574b37;
    color: #f8f6f3;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
}

.add-to-cart-btn:hover {
    background-color: #c5ad84;
    transform: translateY(-1px);
}

/* Styles de boutons - AsEver refined */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 300;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #c5ad84;
    color: #f8f6f3;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.btn-primary:hover {
    background-color: #574b37;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #574b37;
    border: 1px solid #c5ad84;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.btn-secondary:hover {
    background-color: #c5ad84;
    color: #f8f6f3;
    transform: translateY(-1px);
}

/* Styles de pied de page - AsEver style */
footer {
    background-color: #574b37;
    color: #e8e5e1;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #c5ad84;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c5ad84;
}

/* Informations de copyright - AsEver style */
.copyright {
    border-top: 1px solid rgba(197, 173, 132, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #b3a896;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Design responsive - AsEver style */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    main {
        padding: 2rem 0;
    }
}

/* Styles de compatibilité WooCommerce - AsEver style */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    background-color: rgba(248, 246, 242, 0.8);
    border-left: 3px solid #c5ad84;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 3px;
    color: #574b37;
}

.woocommerce .woocommerce-message:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-error:before {
    color: #c5ad84;
}

.woocommerce .button {
    background-color: #c5ad84;
    color: #f8f6f3;
    border: none;
    padding: 1rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.woocommerce .button:hover {
    background-color: #574b37;
    color: #f8f6f3;
    transform: translateY(-1px);
}

/* Styles de page produit */
.woocommerce div.product .summary {
    margin-bottom: 2rem;
}

.woocommerce div.product .price {
    color: #c5ad84;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

/* Styles de panier */
.woocommerce-cart table.cart {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem;
}

.woocommerce-cart table.cart th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* ===== STYLES PAGE MON COMPTE - AsEver Style ===== */
.lebenefique-my-account {
    background: #f7f6f2;
    min-height: 80vh;
    padding: 3rem 0;
}

.account-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(197, 173, 132, 0.1);
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.account-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #574b37;
    margin-bottom: 0.5rem;
    position: relative;
    font-family: 'Assistant', sans-serif;
    letter-spacing: 1px;
}

.account-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #c5ad84;
    margin: 1rem auto;
    border-radius: 1px;
}

.account-subtitle {
    color: #8a7d6f;
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Navigation du compte - AsEver style */
.account-navigation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(197, 173, 132, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.nav-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 173, 132, 0.3);
    margin-bottom: 2rem;
}

.user-avatar {
    margin-bottom: 1rem;
}

.user-avatar img {
    border-radius: 50%;
    border: 2px solid #c5ad84;
    padding: 2px;
}

.user-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: #574b37;
    margin-bottom: 0.25rem;
    font-family: 'Assistant', sans-serif;
}

.user-email {
    color: #8a7d6f;
    font-size: 0.9rem;
    font-weight: 300;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0.5rem;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #6b5f52;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 300;
    border: 1px solid transparent;
    font-family: 'Assistant', sans-serif;
    letter-spacing: 0.5px;
}

.menu-link:hover {
    background-color: rgba(248, 246, 242, 0.7);
    color: #c5ad84;
    border-color: rgba(197, 173, 132, 0.3);
    transform: translateX(5px);
}

.menu-item.is-active .menu-link {
    background: #c5ad84;
    color: #f8f6f3;
    box-shadow: 0 3px 15px rgba(197, 173, 132, 0.3);
}

.menu-icon {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg {
    transition: transform 0.3s ease;
}

.menu-link:hover .menu-icon svg {
    transform: scale(1.1);
}

.menu-label {
    font-size: 0.95rem;
}

/* Contenu du compte - AsEver style */
.account-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(197, 173, 132, 0.1);
    min-height: 500px;
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.content-wrapper {
    max-width: 100%;
}

/* Styles pour les formulaires - AsEver style */
.woocommerce-MyAccount-content .woocommerce-form-row {
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 300;
    color: #574b37;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(197, 173, 132, 0.3);
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(248, 246, 242, 0.5);
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
    color: #574b37;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: #c5ad84;
    box-shadow: 0 0 0 3px rgba(197, 173, 132, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
}

/* Tableau des commandes - AsEver style */
.woocommerce-orders-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2rem;
    border: 1px solid rgba(197, 173, 132, 0.2);
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(197, 173, 132, 0.15);
}

.woocommerce-orders-table th {
    background: rgba(248, 246, 242, 0.8);
    font-weight: 300;
    color: #574b37;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.woocommerce-orders-table tr:hover {
    background-color: rgba(248, 246, 242, 0.6);
}

/* Cartes d'information - AsEver style */
.woocommerce-Address {
    background: rgba(248, 246, 242, 0.6);
    padding: 2.5rem;
    border-radius: 3px;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.woocommerce-Address-title {
    margin-bottom: 1.5rem;
    color: #574b37;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Messages de succès/erreur - AsEver style */
.woocommerce-message {
    background: rgba(212, 237, 218, 0.8);
    border-left: 3px solid #28a745;
    color: #155724;
    border-radius: 3px;
    backdrop-filter: blur(5px);
}

.woocommerce-error {
    background: rgba(248, 215, 218, 0.8);
    border-left: 3px solid #dc3545;
    color: #721c24;
    border-radius: 3px;
    backdrop-filter: blur(5px);
}

/* Dashboard welcome - AsEver style */
.woocommerce-MyAccount-content p:first-child {
    font-size: 1.1rem;
    color: #8a7d6f;
    line-height: 1.7;
    background: rgba(248, 246, 242, 0.6);
    padding: 2rem;
    border-radius: 3px;
    border-left: 3px solid #c5ad84;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

/* Responsive pour la page mon compte */
@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .account-navigation {
        position: static;
        order: 2;
        margin-top: 2rem;
    }
    
    .nav-header {
        display: flex;
        align-items: center;
        text-align: left;
        padding-bottom: 1rem;
    }
    
    .user-avatar {
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .user-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .account-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .menu-link {
        padding: 0.8rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-icon {
        margin-right: 0;
    }
    
    .account-content {
        order: 1;
        padding: 1.5rem;
    }
    
    .account-title {
        font-size: 2rem;
    }
}

/* ===== STYLES DASHBOARD MON COMPTE - AsEver Style ===== */
.dashboard-welcome {
    max-width: 100%;
}

.welcome-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(248, 246, 242, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.welcome-title {
    font-size: 2rem;
    color: #574b37;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    letter-spacing: 1px;
}

.welcome-subtitle {
    color: #8a7d6f;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

/* Statistiques du dashboard - AsEver style */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(197, 173, 132, 0.1);
    border: 1px solid rgba(197, 173, 132, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 173, 132, 0.15);
    border-color: #c5ad84;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #c5ad84;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f6f3;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: #574b37;
    margin-bottom: 0.25rem;
    font-family: 'Assistant', sans-serif;
}

.stat-label {
    color: #8a7d6f;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

/* Actions rapides - AsEver style */
.dashboard-actions {
    margin-bottom: 3rem;
}

.actions-title {
    font-size: 1.5rem;
    color: #574b37;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #c5ad84;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.action-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(197, 173, 132, 0.1);
    border: 1px solid rgba(197, 173, 132, 0.2);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 173, 132, 0.2);
    border-color: #c5ad84;
    text-decoration: none;
    color: inherit;
}

.action-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 246, 242, 0.8);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5ad84;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    background: #c5ad84;
    color: #f8f6f3;
}

.action-content h4 {
    font-size: 1.2rem;
    color: #574b37;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-content p {
    color: #8a7d6f;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

/* Commandes récentes - AsEver style */
.dashboard-recent-orders {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(197, 173, 132, 0.1);
    border: 1px solid rgba(197, 173, 132, 0.2);
}

.section-title {
    font-size: 1.5rem;
    color: #574b37;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #c5ad84;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(248, 246, 242, 0.5);
    border-radius: 3px;
    border: 1px solid rgba(197, 173, 132, 0.2);
    transition: all 0.3s ease;
}

.order-item:hover {
    background: rgba(248, 246, 242, 0.8);
    border-color: #c5ad84;
}

.order-info .order-number {
    color: #574b37;
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-family: 'Assistant', sans-serif;
}

.order-info .order-date {
    color: #8a7d6f;
    font-size: 0.9rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-total {
    font-weight: 400;
    color: #c5ad84;
    font-size: 1.1rem;
    font-family: 'Assistant', sans-serif;
}

.btn-view-order {
    background: #c5ad84;
    color: #f8f6f3;
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-view-order:hover {
    background: #574b37;
    color: #f8f6f3;
    text-decoration: none;
    transform: translateY(-1px);
}

.view-all-orders {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 173, 132, 0.3);
}

/* Responsive pour le dashboard */
@media (max-width: 768px) {
    .welcome-header {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .order-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .order-item > div {
        justify-self: start;
    }
    
    .dashboard-recent-orders {
        padding: 1.5rem;
    }
}