/*
Theme Name: OldMart Marketplace
Theme URI: https://oldmart.com
Author: OldMart Team
Author URI: https://oldmart.com
Description: Professional classified ads marketplace theme for buying and selling products. 
Version: 1.0.0
License: GPL v2 or later
Text Domain: oldmart
Tags: classifieds, marketplace, ecommerce, buy, sell, responsive
*/

/* ===== YOUR EXACT CSS FROM HTML FILE ===== */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #0d6e6e;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #ffcc00;
}

.search-bar {
    flex-grow: 1;
    margin: 0 20px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    color: #0d6e6e;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    color: white;
}

.nav-links a:hover {
    color: #ffcc00;
}

.sell-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.sell-btn:hover {
    background-color: #e6b800;
}

/* ... ALL YOUR CSS FROM index-2.html ... */
/* Copy complete CSS here */