
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.woocommerce-account .woocommerce {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 40px 20px;
}

.wc-mooie-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dashboard-header {
    background: white;
    color: #333;
    padding: 50px 40px 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.dashboard-header p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.user-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3498db;
}

.stat-label {
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 50px;
    background: white;
}

.wc-menu-item {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-align: center;
}

.wc-menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
    text-decoration: none;
}

.wc-menu-item.dashboard {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.wc-menu-item.orders {
    background: #f093fb;
    color: white;
    border-color: #f093fb;
}

.wc-menu-item.downloads {
    background: #4facfe;
    color: white;
    border-color: #4facfe;
}

.wc-menu-item.addresses {
    background: #43e97b;
    color: white;
    border-color: #43e97b;
}

.wc-menu-item.account {
    background: #fa709a;
    color: white;
    border-color: #fa709a;
}

.wc-menu-item.logout {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
}

.wc-menu-item.is-active {
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.menu-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.menu-description {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    max-width: 280px;
    margin: 0 auto;
}

.wc-menu-item:active {
    transform: translateY(-1px) scale(0.99);
}

.woocommerce-MyAccount-navigation ul {
    display: none !important;
}

.woocommerce-MyAccount-content {
    margin-top: 40px;
    padding: 0 20px;
}

.wc-dashboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 500;
}

.wc-dashboard-notification.show {
    transform: translateX(0);
}

.wc-dashboard-notification.info { background: #3498db; }
.wc-dashboard-notification.warning { background: #f39c12; }
.wc-dashboard-notification.error { background: #e74c3c; }
.wc-dashboard-notification.success { background: #2ecc71; }

.wc-menu-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.wc-menu-item.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.wc-menu-item .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.wc-dashboard-welcome-message {
    background: #f8f9fa;
    padding: 24px;
    margin: 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #3498db;
    color: #6c757d;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .dashboard-header {
        padding: 40px 20px 20px;
    }

    .dashboard-header h1 {
        font-size: 1.8rem;
    }

    .wc-menu-item {
        padding: 30px 25px;
    }

    .menu-icon {
        font-size: 2.2rem;
    }

    .user-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wc-mooie-dashboard-container {
        margin: 15px 10px;
        border-radius: 8px;
    }
    
    .dashboard-header {
        padding: 30px 15px 15px;
    }
    
    .dashboard-header h1 {
        font-size: 1.6rem;
    }
    
    .menu-grid {
        padding: 20px 15px;
        gap: 15px;
    }

    .wc-menu-item {
        padding: 25px 20px;
    }

    .menu-title {
        font-size: 1.2rem;
    }

    .menu-description {
        font-size: 0.85rem;
    }
}
