.home-hero { width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;

    background-color: #1d4ed8; 
    background-image: 
        url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.08" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E'),
        linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    
    padding: 4rem 1rem; 
    color: #fff; 
    text-align: center; 
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.25); }
.home-hero h1 { font-size: 2.5rem; font-weight: 800; margin: 0 0 1rem 0; line-height: 1.2; letter-spacing: -0.5px; }
.home-hero p { font-size: 1.1rem; color: #cbd5e1; margin: 0 0 2.5rem 0; max-width: 600px; margin-left: auto; margin-right: auto; }

.home-search-box { background: #fff; padding: 10px; border-radius: 12px; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: row; gap: 10px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); flex-wrap: nowrap; align-items: stretch; }
.hs-input-group { flex: 1 1 0px; min-width: 0; position: relative; }
.hs-input-group input, .hs-input-group select { width: 100%; height: 50px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0 1rem; font-size: 1rem; color: #1e293b; outline: none; transition: 0.2s; box-sizing: border-box; }
.hs-input-group input:focus, .hs-input-group select:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.hs-btn { flex: 0 0 auto; width: auto; white-space: nowrap; background: #3b82f6; color: #fff; border: none; font-weight: bold; font-size: 1.1rem; padding: 0 2rem; border-radius: 8px; cursor: pointer; transition: 0.2s; height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.hs-btn:hover { background: #2563eb; }

.city-suggestions {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border: 1px solid #cbd5e1; border-radius: 6px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 10000; max-height: 250px; overflow-y: auto; margin-top: 4px; text-align: left;
}
.city-suggestion-item {
    padding: 10px 15px; cursor: pointer; transition: 0.2s; border-bottom: 1px solid #f1f5f9; 
    display: flex; flex-direction: column; gap: 3px;
}
.city-suggestion-item:last-child { border-bottom: none; }
.city-suggestion-item:hover { background: #f8fafc; }
.city-suggestion-name { font-size: 0.95rem; color: #1e293b; font-weight: 600; transition: 0.2s; }
.city-suggestion-item:hover .city-suggestion-name { color: #3b82f6; }
.city-suggestion-sub { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; font-weight: normal; }

@media (max-width: 768px) {
    .home-hero h1 { font-size: 2rem; }
    .home-search-box { flex-direction: column; background: transparent; box-shadow: none; padding: 0; }
    .hs-btn { width: 100%; }
}

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: #1e293b; margin: 0 0 0.5rem 0; }
.section-title p { color: #64748b; font-size: 1.1rem; margin: 0; }

.cat-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
  gap: 1.5rem; 
  max-width: 1200px; 
  margin: 0 auto 4rem auto; 
  padding: 0 1rem; 
}
@media (min-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}.cat-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.5rem 1rem; text-align: center; text-decoration: none; color: #1e293b; transition: 0.2s; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cat-card:hover { transform: translateY(-5px); border-color: #cbd5e1; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); color: #3b82f6; }
.cat-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: #f8fafc; border-radius: 50%; color: #64748b; }
.cat-card:hover .cat-icon { background: #eff6ff; color: #3b82f6; }
.cat-name { font-weight: 600; font-size: 0.95rem; line-height: 1.2; }

.latest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto 4rem auto; padding: 0 1rem; }
.item-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.item-card:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: #cbd5e1; }
.item-cover-wrap { width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; background: #f1f5f9; }
.item-cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.item-card:hover .item-cover-wrap img { transform: scale(1.05); }
.item-details { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.item-heading { font-size: 1.1rem; font-weight: 600; color: #1e293b; margin-bottom: 0.5rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.item-price { font-size: 1.25rem; font-weight: 800; color: #10b981; margin-bottom: 0.5rem; }
.item-meta-info { font-size: 0.85rem; color: #64748b; margin-top: auto; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }

@media (max-width: 600px) {
    .latest-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.75rem; 
        padding: 0 0.5rem;
    }
    .latest-grid .item-details {
        padding: 0.75rem; 
    }
    .latest-grid .item-heading {
        font-size: 0.95rem; 
        margin-bottom: 0.3rem;
    }
    .latest-grid .item-price {
        font-size: 1.1rem; 
    }
    .latest-grid .item-meta-info {
        font-size: 0.75rem;
        flex-direction: column; 
        align-items: flex-start;
        gap: 4px;
    }
    .latest-grid .item-meta-info span {
        margin-left: 0 !important; 
    }
}

.seo-text-block { background: #f8fafc; border-top: 1px solid #e2e8f0; padding: 0.5rem 2rem 1rem 2em; width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box; }
.seo-container { max-width: 900px; margin: 0 auto; color: #475569; line-height: 1.6; }
.seo-container h2 { font-size: 1.5rem; color: #1e293b; margin-bottom: 1rem; }
.seo-container h3 { font-size: 1.2rem; color: #334155; margin-top: 2rem; margin-bottom: 0.5rem; }


.cat-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.empty-grid-msg {
    text-align: center;
    grid-column: 1 / -1;
}

.latest-empty-msg {
    color: #64748b;
}

.item-meta-date {
    margin-left: 0;
    color: #94a3b8;
}

.browse-all-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.btn-browse-all {
    display: inline-flex;
    width: auto;
}


.top-stats-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 1rem;
}

.top-stats-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.top-stats-col {
    flex: 1;
    min-width: 250px;
}

.top-stats-title {
    font-size: 1.2rem;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.top-cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
}

.top-city-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-city-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.top-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-keyword-link {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-transform: capitalize;
}

.top-keyword-link:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff; 
}