:root {
    --gb-cream: #F5F5EF;
    --gb-font: 'Geist Sans', sans-serif;
    --gb-green: #2D5C46;
}

body {
    background-color: var(--gb-cream);
    font-family: var(--gb-font);
}

.gb-search-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.gb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gb-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gb-verified-badge {
    color: var(--gb-green);
    font-weight: bold;
}

.gb-btn {
    background: var(--gb-green);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.gb-blur {
    filter: blur(4px);
    user-select: none;
    color: transparent;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* =========================================
   8. CLEANER PROFILE MOCKUP DESIGN
   ========================================= */

   .gb-profile-page-container {
    background-color: var(--bg-color); /* Cream background */
    min-height: 80vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.gb-profile-card-mockup {
    background: #fff;
    width: 100%;
    max-width: 900px;
    border-radius: 30px; /* Rounded corners like mockup */
    border: 1px solid #e0e0e0; /* Subtle border */
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); /* Very soft shadow */
    position: relative;
}

/* --- Header Area (Photo + Info) --- */
.gb-profile-header {
    display: grid;
    grid-template-columns: 280px 1fr; /* Fixed width for avatar column */
    gap: 40px;
    margin-bottom: 40px;
}

/* Avatar Column */
.gb-avatar-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gb-avatar-img-container {
    width: 200px;
    height: 200px;
    background-color: #e0e0e0; /* Fallback grey */
    border-radius: 50%; /* Circle */
    overflow: hidden;
    /* Optional: Border if desired, mockup is clean */
}

.gb-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Verified Pill */
.gb-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #d1f5d3; /* Light green bg */
    color: #2D4A2B; /* Darker green text */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.gb-verified-pill svg {
    width: 14px;
    height: 14px;
}

/* --- Info Column --- */
.gb-primary-info {
    display: flex;
    flex-direction: column;
}

.gb-info-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.gb-cleaner-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: #111;
    line-height: 1.1;
}

/* Rate Box */
.gb-rate-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px 15px;
    text-align: right;
    background-color: #f9f9f9;
}

.gb-rate-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gb-rate-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

/* Location */
.gb-location-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Bio */
.gb-section-heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.gb-bio-content {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.gb-empty-bio {
    color: #999;
    font-style: italic;
}

/* --- Footer Action Area --- */
.gb-profile-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    /* Optional: separator line if desired, mockup didn't explicitly show one but implied structure */
}

.gb-services-mini-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gb-pill {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #555;
}

.gb-btn-action {
    background-color: #2D4A2B; /* Brand Green */
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gb-btn-action:hover {
    background-color: #1e331d;
}

.gb-btn-action.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gb-profile-card-mockup {
        padding: 25px;
    }
    
    .gb-profile-header {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 20px;
        text-align: center;
    }

    .gb-avatar-area {
        margin: 0 auto;
    }

    .gb-info-top-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .gb-location-row {
        justify-content: center;
    }

    .gb-rate-box {
        width: 100%;
        text-align: center;
    }

    .gb-profile-footer-action {
        flex-direction: column;
        gap: 20px;
    }
    
    .gb-btn-action {
        width: 100%;
    }
}