#newindex {
    padding: 24px;
    margin: 10px 0;
    background: #f5f5fb;
}

#newindex .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

#newindex .section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

#newindex .see-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #5b3df5;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

#newindex .small-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 16px 0;
}

#newindex .card-wrapper {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#newindex .card-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

#newindex .card-link {
    display: block;
    text-decoration: none;
}

#newindex .card-image {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
}

#newindex .card-thumb-img,
#newindex .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#newindex .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #5b3df5;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

#newindex .card-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

#newindex .card-body {
    padding: 12px 14px 14px;
}

#newindex .card-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

#newindex .card-tag {
    font-size: 12px;
    color: #555;
    background: #f0f0f5;
    padding: 3px 10px;
    border-radius: 10px;
}

#newindex .card-location {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

#newindex .card-location a {
    color: #888;
    text-decoration: none;
}

#newindex .card-price {
    font-size: 18px;
    font-weight: 700;
    color: #5b3df5;
    margin-bottom: 10px;
}

#newindex .card-features {
    display: flex;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
}

#newindex .card-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

#newindex .card-features svg {
    color: #999;
}

@media (max-width: 992px) {
    #newindex .card-wrapper {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    #newindex .card-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.zone-populare-section {
    padding: 24px 0;
}

.zone-populare-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.zone-populare-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.zona-card {
    flex: 0 0 calc((100% - 5 * 16px) / 6);
    max-width: calc((100% - 5 * 16px) / 6);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.zona-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    color: inherit;
}

.zona-card-image {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.zona-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zona-card-info {
    padding: 10px 12px 12px;
}

.zona-nume {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.zona-numar {
    font-size: 12px;
    color: #888;
}

@media (max-width: 992px) {
    .zona-card {
        flex: 0 0 calc((100% - 2 * 16px) / 3);
        max-width: calc((100% - 2 * 16px) / 3);
    }
}

@media (max-width: 576px) {
    .zona-card {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}