body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 140px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
}

.signup {
    background: #2563eb;
    color: white !important;
    padding: 10px 18px;
    border-radius: 7px;
}

.hero {
    background: #f7f9fc;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: auto;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    color: #111827;
}

.hero p {
    font-size: 20px;
    color: #667085;
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    max-width: 700px;
    margin: auto;
}

.search-box input {
    flex: 1;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

.search-box button {
    padding: 0 30px;
    border: none;
    background: #2563eb;
    color: white;
    font-size: 16px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.categories {
    padding: 70px 50px;
    max-width: 1200px;
    margin: auto;
}

.categories h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    transition: 0.2s;
}

.category:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
}

.category span {
    font-size: 28px;
}

.category h3 {
    margin: 15px 0 5px;
}

.category p {
    margin: 0;
    color: #667085;
}

.services {
    padding: 70px 50px;
    max-width: 1200px;
    margin: auto;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-info {
    padding: 18px;
}

.seller {
    color: #667085;
    font-size: 14px;
}

.service-info h3 {
    font-size: 17px;
    line-height: 1.4;
}

.rating {
    color: #f59e0b;
}

.price {
    text-align: right;
    color: #667085;
}

.price strong {
    color: #111827;
    font-size: 18px;
}


.service-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-image {
    width: 100%;
    border-radius: 10px;
}

.service-main h1 {
    font-size: 32px;
    margin-top: 25px;
}

.service-rating {
    color: #f59e0b;
}

.service-description {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.service-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    height: fit-content;
}

.service-box p {
    color: #667085;
}

.service-box button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


.service-card {
    color: inherit;
    text-decoration: none;
}


.browse-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.browse-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.browse-subtitle {
    color: #667085;
    margin-bottom: 40px;
}


.browse-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.browse-categories a {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.browse-categories a:hover {
    border-color: #2563eb;
    color: #2563eb;
}


.auth-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-box {
    width: 400px;
    padding: 35px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.auth-box h1 {
    margin-top: 0;
}

.auth-box p {
    color: #667085;
}

.auth-box label {
    display: block;
    margin-top: 20px;
    margin-bottom: 7px;
}

.auth-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.auth-box button {
    width: 100%;
    margin-top: 25px;
    padding: 13px;
    border: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.auth-message {
    margin-top: 20px;
    padding: 12px;
    background: #eef6ff;
    border-radius: 7px;
}

.auth-box textarea {
    width: 100%;
    min-height: 120px;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
    resize: vertical;
}


.auth-box select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: white;
    font-size: 15px;
}

.profile-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.profile-header h1 {
    margin: 0 0 8px;
    font-size: 32px;
}

.profile-header p {
    margin: 0;
    color: #667085;
}

.profile-services h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.profile-empty {
    color: #667085;
}

.seller a {
    color: #667085;
    text-decoration: none;
}

.seller a:hover {
    color: #2563eb;
}



.service-card-link {
    display: block;
}

.service-card-link img {
    display: block;
}

.service-info h3 a {
    color: #222;
    text-decoration: none;
}

.service-info h3 a:hover {
    color: #2563eb;
}

.seller a {
    color: #667085;
    text-decoration: none;
}

.seller a:hover {
    color: #2563eb;
}



.service-seller {
    margin-top: 25px;
}

.service-seller p {
    margin: 0 0 5px;
    color: #667085;
    font-size: 14px;
}

.service-seller-name {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.service-seller-name:hover {
    text-decoration: underline;
}

.service-category {
    display: inline-block;
    padding: 7px 14px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    font-size: 14px;
}

.service-description-title {
    margin-top: 40px;
    font-size: 22px;
}

.service-description {
    white-space: normal;
}

.service-price {
    font-size: 30px;
    margin: 5px 0 20px;
    color: #111827;
}

.seller-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.seller-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
}

.seller-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.seller-profile h3 {
    margin: 0 0 5px;
}

.seller-profile p {
    margin: 0 0 8px;
    color: #667085;
}

.view-profile {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.view-profile:hover {
    text-decoration: underline;
}


.checkout-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.checkout-main h1 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 30px;
}

.checkout-service {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 30px;
}

.checkout-service img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.checkout-service h2 {
    margin: 5px 0 10px;
    font-size: 20px;
}

.checkout-category {
    display: inline-block;
    padding: 5px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 15px;
    font-size: 13px;
}

.checkout-form {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
}

.checkout-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.checkout-form textarea {
    width: 100%;
    min-height: 180px;
    box-sizing: border-box;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.checkout-form button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.checkout-form button:hover {
    background: #1d4ed8;
}

.checkout-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    height: fit-content;
}

.checkout-box p {
    color: #667085;
    margin-top: 0;
}

.checkout-box h2 {
    font-size: 30px;
    margin: 5px 0 30px;
}

.checkout-line,
.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.checkout-line {
    color: #667085;
    border-bottom: 1px solid #eee;
}

.checkout-total {
    font-size: 18px;
    padding-top: 20px;
}

.continue-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 16px;
}

.continue-button:hover {
    background: #1d4ed8;
}


.order-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.order-label {
    color: #667085;
    font-size: 14px;
    margin: 0 0 5px;
}

.order-header h1 {
    margin: 0;
    font-size: 32px;
}

.order-status {
    padding: 8px 14px;
    border-radius: 20px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 14px;
    text-transform: capitalize;
}

.order-service {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 30px;
}

.order-service img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.order-service h2 {
    margin: 0;
    font-size: 21px;
}

.order-details,
.requirements-section {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.order-details h2,
.requirements-section h2 {
    margin-top: 0;
    font-size: 21px;
    margin-bottom: 20px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row span {
    color: #667085;
}

.requirements-box {
    background: #f7f9fc;
    padding: 20px;
    border-radius: 8px;
    color: #444;
    line-height: 1.6;
}

.order-sidebar {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
}

.order-sidebar h2 {
    margin-top: 0;
    font-size: 21px;
}

.status-step {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.status-step:last-child {
    border-bottom: none;
}

.status-dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    background: #d1d5db;
}

.status-step.active .status-dot {
    background: #2563eb;
}

.status-step strong {
    display: block;
    margin-bottom: 5px;
}

.status-step p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}


.dashboard-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-label {
    color: #2563eb;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.dashboard-header h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.dashboard-header p {
    color: #667085;
}

.dashboard-button {
    background: #2563eb;
    color: white;
    padding: 12px 18px;
    border-radius: 7px;
    text-decoration: none;
}

.dashboard-button:hover {
    background: #1d4ed8;
}


.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-stat {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
}

.dashboard-stat span {
    display: block;
    color: #667085;
    margin-bottom: 10px;
}

.dashboard-stat strong {
    font-size: 30px;
}


.dashboard-section {
    margin-bottom: 50px;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-section-header h2 {
    margin: 0;
    font-size: 25px;
}

.dashboard-section-header a {
    color: #2563eb;
    text-decoration: none;
}


.dashboard-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dashboard-service {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: white;
}

.dashboard-service:hover {
    border-color: #2563eb;
}

.dashboard-service img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.dashboard-service > div {
    padding: 18px;
}

.dashboard-service h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.dashboard-service p {
    color: #667085;
    font-size: 14px;
    margin: 0 0 12px;
}

.dashboard-service strong {
    color: #111827;
}


.dashboard-orders {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.dashboard-order {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
}

.dashboard-order:last-child {
    border-bottom: none;
}

.dashboard-order:hover {
    background: #f9fafb;
}

.dashboard-order img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 7px;
}

.dashboard-order-info {
    flex: 1;
}

.dashboard-order-info h3 {
    margin: 0 0 7px;
    font-size: 16px;
}

.dashboard-order-info p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}

.dashboard-order-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-order-right > strong {
    font-size: 17px;
}

.dashboard-empty {
    color: #667085;
    padding: 25px;
    border: 1px dashed #ddd;
    border-radius: 10px;
}



.order-actions {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.order-actions h2 {
    margin-top: 0;
    font-size: 21px;
}

.order-actions button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.order-actions button:hover {
    background: #1d4ed8;
}

.completed-message {
    margin: 0;
    color: #15803d;
    background: #f0fdf4;
    padding: 12px;
    border-radius: 7px;
}


.orders-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
}

.orders-header {
    margin-bottom: 35px;
}

.orders-header h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.orders-header p {
    color: #667085;
}


.orders-list {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}


.order-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    background: white;
}

.order-card:last-child {
    border-bottom: none;
}

.order-card:hover {
    background: #f9fafb;
}


.order-card img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}


.order-card-info {
    flex: 1;
}


.order-card-label {
    color: #667085;
    font-size: 13px;
    margin: 0 0 6px;
}


.order-card-info h2 {
    font-size: 18px;
    margin: 0 0 8px;
}


.order-card-info p {
    color: #667085;
    margin: 0 0 7px;
}


.order-date {
    color: #98a2b3;
    font-size: 13px;
}


.order-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}


.order-price {
    font-size: 18px;
    color: #111827;
}


.orders-empty {
    text-align: center;
    padding: 70px 30px;
    border: 1px dashed #ddd;
    border-radius: 10px;
}


.orders-empty h2 {
    margin-top: 0;
}


.orders-empty p {
    color: #667085;
    margin-bottom: 25px;
}


.messages-page {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 30px;
}

.messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.messages-header h1 {
    margin: 0 0 10px;
    font-size: 30px;
}

.messages-header p {
    color: #667085;
}

.messages-order-button {
    padding: 11px 18px;
    border: 1px solid #ddd;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
}

.messages-order-button:hover {
    border-color: #2563eb;
    color: #2563eb;
}


.message-container {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}


.message-list {
    padding: 30px;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}


.message {
    display: flex;
    margin-bottom: 20px;
}

.message-own {
    justify-content: flex-end;
}

.message-other {
    justify-content: flex-start;
}


.message-bubble {
    max-width: 65%;
    padding: 14px 17px;
    border-radius: 12px;
}


.message-own .message-bubble {
    background: #2563eb;
    color: white;
    border-bottom-right-radius: 3px;
}


.message-other .message-bubble {
    background: #f1f5f9;
    color: #222;
    border-bottom-left-radius: 3px;
}


.message-sender {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    opacity: 0.75;
}


.message-text {
    line-height: 1.5;
    word-wrap: break-word;
}


.message-time {
    font-size: 11px;
    margin-top: 8px;
    opacity: 0.65;
}


.message-form {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #eee;
}


.message-form textarea {
    flex: 1;
    min-height: 50px;
    max-height: 150px;
    resize: vertical;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}


.message-form button {
    align-self: flex-end;
    padding: 13px 20px;
    border: none;
    border-radius: 7px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    cursor: pointer;
}


.message-form button:hover {
    background: #1d4ed8;
}


.messages-empty {
    text-align: center;
    padding: 100px 20px;
    color: #667085;
}


.messages-empty p {
    margin: 5px 0;
}


.order-messages-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #2563eb;
    border-radius: 7px;
    color: #2563eb;
    text-decoration: none;
}

.order-messages-button:hover {
    background: #eff6ff;
}

.notifications-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.notifications-page h1 {
    font-size: 34px;
    margin-bottom: 30px;
}


.notifications-list {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}


.notification-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    background: white;
}

.notification-card:last-child {
    border-bottom: none;
}

.notification-card:hover {
    background: #f8fafc;
}


.notification-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.notification-content {
    flex: 1;
}


.notification-content p {
    margin: 0 0 6px;
    color: #222;
}


.notification-content span {
    color: #98a2b3;
    font-size: 13px;
}


.notifications-empty {
    text-align: center;
    padding: 70px 30px;
    border: 1px dashed #ddd;
    border-radius: 10px;
}


.notifications-empty h2 {
    margin-top: 0;
}


.notifications-empty p {
    color: #667085;
}


.notification-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;

    padding: 0 5px;

    box-sizing: border-box;

    background: #ef4444;
    color: white;

    border-radius: 999px;

    font-size: 12px;
    font-weight: bold;
}


.order-action-button {
    padding: 9px 14px;
    border: none;
    border-radius: 6px;
    background: #2563eb;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.order-action-button:hover {
    background: #1d4ed8;
}


.order-waiting {
    color: #667085;
    font-size: 14px;
}


.profile-avatar {
    overflow: hidden;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.profile-preview {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.profile-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
}
.profile-edit-button {
    display: inline-block;
    margin-top: 12px;
    padding: 9px 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-size: 14px;
}

.profile-edit-button:hover {
    background: #1d4ed8;
}

