body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9fb;
    color: #333;
    margin: 0;
    padding-bottom: 40px;
}

/* Navigation Bar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2d3436; /* Dark professional theme */
    color: white;
    padding: 20px 40px;
    margin-bottom: 50px;
}

.nav-center h1 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-line {
    width: 30px;
    height: 3px;
    background: #b2bec3;
    border-radius: 2px;
}

/* Card Styling (Existing) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content { padding: 24px; }

.btn-primary { 
    background: #00b894; /* Teal accent matches the image feel */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary { 
    background: #2d3436; /* Teal accent matches the image feel */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}