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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2D3748;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #4F7CFF;
    color: #4F7CFF;
    background: white;
}

.btn-outline:hover {
    background: #4F7CFF;
    color: white;
}

.btn-primary {
    background: #4F7CFF;
    color: white;
}

.btn-primary:hover {
    background: #3D63D9;
}

.btn-success {
    background: #10B981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    nav {
        display: none;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }

    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .community-content {
        grid-template-columns: 1fr;
    }
}

