 :root {
    --bg: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --border: #eeeeee;
    --border-hover: #dddddd;
    --accent: #0066FF;
    --page-padding-x: 24px;
    --page-max-width: 1150px
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    
}

main {
    line-height: 1.5;
}

/* --- HEADER --- */
.nav {
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; text-decoration: none; color: #000; }

.search {
    background: #f6f6f6;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 300px;
}

.search input {
    background: transparent; border: none; outline: none; font-size: 13px; width: 100%;
}

.nav-actions { display: flex; gap: 20px; align-items: center; font-size: 13px; font-weight: 500; }
.nav-actions span { cursor: pointer; color: var(--text-muted); transition: 0.2s; }
.nav-actions span:hover { color: #000; }

/* --- PROFILE --- */
.profile-container {
    max-width: var(--page-max-width);
    margin: 72px auto;
    padding: 0 var(--page-padding-x);
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 43px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 55px;
}

.profile-img {
    width: 120px;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ffffff;
    border-radius: 72px;
    position: relative;
    border: 1px solid #9e9e9e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;

    
}



.verified-icon { color: var(--accent); font-size: 24px; }

.meta-list {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;

    i {
        font-size: 16px;
    }
}

.meta-item { display: flex; align-items: center; gap: 6px; }



.profile-actions {

    margin-top: 24px;
    display: flex;
    gap: 12px;

    .btn {
        background: #fff;
        color: #000;
        border: 1px solid var(--border);
        padding: 0px 16px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        height: 33px;
    }
    .btn:hover { opacity: 0.8; }

    .btn:first-of-type {
        background-color: #000;
        color: white;
        line-height: 0px;
        padding: 0px 24px;
    }

}



/* --- TABS --- */
.tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 26px;
}

/* Optimized H2 to look like the original tab */
.tab-heading {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    background: none;
}

/* --- GRID --- */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    list-style: none; /* For the UL */
}

.card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.image-wrap {
    aspect-ratio: 1;
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #f3f3f3;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover img { transform: scale(1.03); }

.card-info h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.card-info .price { font-size: 15px; font-weight: 700; }
.card-info .date { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

@media (max-width: 800px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .profile-header { flex-direction: column; gap: 24px; }
    .search { display: none; }
}